ScrollViewと苦労しています。なぜ表示されるテキストがあっても、ScrollViewがスクロールしない
- 私の目的は、画像とテキスト(各画像の下)でスクロール可能なフラグメントを作ることです。私はすでにいくつかのシンプルな画像を追加しており、これらの画像の下に専用のScrollViewをテキスト用に追加しようとしていました。
問題の説明はここから: フラグメントが1枚のだけの画像があり、1はScrollViewはScrollViewが正常に動作しますが、私は以下の1枚の以上の画像を追加するとき、ScrollViewだけでフリーズするともうスクロールしません。私のミスはどこですか?ここで
コードされています
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:fillViewport="true">
<LinearLayout
android:id="@+id/LinearLayout_Parent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/top_image1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image1"
android:adjustViewBounds="true"/>
<ScrollView
android:layout_width="wrap_content"
android:layout_height="100dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/rly_large"/>
</ScrollView>
//when ImageView is added ScrollView stops wotking
**<ImageView
android:id="@+id/top_image2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image2"/>**
</LinearLayout>
Whitout ImageViewのすべて**内部が正常に動作しますが、そのImageViewのが追加されたときにScrollViewスクロールを停止します。
私はあなたが間違いを指摘してくれることを願っており、希望はばかな質問をしませんでした。
ありがとうございました。
アンドロイドStuido:良い習慣ではありませんScrollView
ScrollView
別の内側に持っ2.1.2 JRE 1.8.0-B15
なぜScrollViewを 'ScrollView'の内部で使用していますか?その良いプログラミングではありません。 – user392117
NestedScrollView https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.htmlを試してみてください。ルートScrollViewのサウンドにwrap_contentを使用すると音が鳴ります。 –
希望する出力の画像ファイルを投稿します。 –