我做了一個簡單的測試android應用程序ScrollView的TextView,幾乎沒有錯誤,但我得到一個警告(這種ScrollView佈局或其LinearLayout父母是無用的),我不知道該怎麼辦。我希望我能得到你的幫助滾動視圖警告
here is the code:
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1">
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hi"/>
</ScrollView>
</LinearLayout>
或者刪除線性佈局並將您的ScrollView作爲父項,因爲scrollView在上面的示例中僅包含一個TextView。對? – Shrikant
是的,正確!我認爲未來的線性佈局可能會容納更多的觀點。 –
謝謝Richard Lee,它的工作我在ScrollView之後添加了更多的文本,並且它的真正工作 –