我不知道我的水平滚动条里面有按钮的问题请原谅我,但我是java的新手并且android编码错误是This HorizontalScrollView layout or its LinearLayout parent is possibly useless
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabHost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:id="@+id/Html"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="60dp" >
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lesson1" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lesson2" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lesson3" />
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
<LinearLayout
android:id="@+id/CSS"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingTop="60dp" >
</LinearLayout>
<LinearLayout
android:id="@+id/Javascript"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingTop="60dp" >
</LinearLayout>
</FrameLayout>
</TabHost>
答案 0 :(得分:0)
警告意味着您可以删除HorizontalScrollView或其“@ + id / Html”LinearLayout父视图,而不会显着损失您的布局。这是因为HorizontalScrollView是“@ + id / Html”LinearLayout的唯一子项。
我曾经这样嵌套LinearLayouts,直到我学会了使用RelativeLayout。我建议您也习惯它,以这种方式处理布局要容易得多:http://developer.android.com/guide/topics/ui/layout/relative.html