ScrollViewを適切にスクロールさせることはできません。これは、通常のLinearLayoutの場合と同様に、常に下部のコンテンツを切り捨てます。もちろんScrollViewはまったくスクロールしません
私のコード
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true" >
<LinearLayout android:id="@+id/scroll_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:isScrollContainer="true"
android:orientation="vertical" >
、私はすでに「fillViewport」と「isScrollContainer」プロパティを追加/削除することを試み、それがすべてでは何も変化しませんでした。
ありがとうございます。
は、あなたが完全なXMLを貼り付けてくださいすることができます
のようなものを追加します。 – PaNaVTEC
'android:layout_height =" match_parent "を' android:layout_height = "0dp" 'に変更し、' android:layout_weight = "1" 'を' ScrollView'に追加してみてください。 –
ちょうど試して、運がない。 – thomaus