我想为我的Android应用程序制作自定义TableRow。我从LinearLayout开始,这正是我想要显示的内容,但是作为TableLay中的TableRow。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="3dp"
android:paddingTop="3dp"
android:weightSum="1" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:text="@string/Context" />
<TextView
android:id="@+id/ContextTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.3" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="3dp"
android:paddingTop="3dp"
android:weightSum="1" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:text="@string/SHUId" />
<TextView
android:id="@+id/SHUIdTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.3" />
</LinearLayout>
...Others LinearLayouts with 2 TextViews...
</LinearLayout>
首先,我尝试将此代码放在TableRow元素中:
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
...LinearLayout code from above...
<TableRow />
此时布局在eclipse编辑器中正确显示但是现在我在主LinearLayout上有一个Lint警告:“此LinearLayout布局或其TableRow父级是 无用的“
然后我会说OK TableRow是LinearLayout的子类然后我可以简单地删除主要的LinearLayout并将他的属性直接放在TableRow上:
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp" >
<LinearLayout >
<TextView />
<TextView />
<LinearLayout />
<LinearLayout >
<TextView />
<TextView />
<LinearLayout />
...etc...
<TableRow />
但现在布局不再正确显示(但没有警告)。我只看到第一行(第一行是TextView)。 我错过了什么?
答案 0 :(得分:1)
您的TableRow
是TableLayout
的孩子吗?如果不是,则不应该使用TableRow
- 如果没有TableLayout
,则只是横向LinearLayout
。