2012-12-16 74 views
1

我做了一個簡單的測試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> 

回答

1

花點時間考慮一下吧!如果線性佈局佔據了可能佔用的所有空間(比如說200x400像素),那麼滾動視圖佔用的空間與線性佈局佔用的空間(200x400像素)一樣多,那麼線性佈局就變得毫無用處! (理論上)

嘗試添加更多的東西,你的滾動視圖後 - 這可能使你的警告消失

+0

或者刪除線性佈局並將您的ScrollView作爲父項,因爲scrollView在上面的示例中僅包含一個TextView。對? – Shrikant

+0

是的,正確!我認爲未來的線性佈局可能會容納更多的觀點。 –

+0

謝謝Richard Lee,它的工作我在ScrollView之後添加了更多的文本,並且它的真正工作 –

0

應該是最頂層的父...拆下頂部螞蟻你的LinearLayout你做。