我正在努力ScrollView,並沒有真正看到它有什麼問題。爲什麼ScrollView不滾動,即使它有文字顯示
- 我的目標是製作帶有圖像和文字的可滾動片段(每張圖片下)。我已經添加了一些簡單的圖像,並試圖爲這些圖像下的文本添加專用的ScrollView。
問題的解釋從這裏開始: 當片段只有1個圖像和1滾動型的滾動型做工精細,但當我在下面添加一個更形象,滾動型只是凍結了,不能再滾動。我的錯誤在哪裏?
下面是代碼:
<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了滾動停止滾動。
我希望你能指出錯誤,希望沒有提出一個愚蠢的問題。
非常感謝。
的Android Stuido:2.1.2 JRE 1.8.0-B15
爲什麼在ScrollView裏面使用'ScrollView'。它不是很好的編程。 – user392117
嘗試使用NestedScrollView https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.html。使用wrap_content作爲ScrollView的根音聽起來也很引人入勝。 –
發佈所需輸出的任何圖像文件。 –