我使用表格布局和表格行创建了一个表格视图,然后我面临着高度大小的问题,我希望高度大小等于大小看起来像标准表格。我动态地用TableRow创建它,这是我的代码:
TableLayout xml。
<android.widget.HorizontalScrollView
android:id="@+id/hv_cust_prop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbarAlwaysDrawHorizontalTrack="false">
<TableLayout
android:id="@+id/table_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:measureWithLargestChild="true"
android:stretchColumns="*"
android:weightSum="1" />
</android.widget.HorizontalScrollView>
TableRow item xml。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal|fill_vertical"
android:gravity="fill_horizontal|center_vertical"
android:orientation="vertical">
<FrameLayout
android:id="@+id/container_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal|fill_vertical"
android:background="@drawable/cell_header_bg">
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal|fill_vertical"
android:layout_margin="2dp"
android:gravity="center"
android:maxWidth="150dp"
android:padding="7dp"
android:text="Header 1"
android:textStyle="bold" />
</FrameLayout>
</LinearLayout>
生成行Java。
row = new TableRow(getActivity());
TableRow.LayoutParams lp = new TableRow.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT, 1);
lp.gravity = Gravity.FILL;
row.setLayoutParams(lp);
View head = LayoutInflater.from(getActivity()).inflate(R.layout.item_cell_cust_prop, null);
FrameLayout container = (FrameLayout) head.findViewById(R.id.container_header);
container.setBackgroundResource(R.drawable.cell_bg);
TextView txtHeader = (TextView) head.findViewById(R.id.txt_header);
try {
txtHeader.setText(object.getString("CV_VALUE"));
} catch (JSONException e) {
txtHeader.setText("erorr");
e.printStackTrace();
}
row.addView(head);
tableContent.addView(row);
tableContent是来自之前xml的TableLayout。
我希望任何列高都跟随最大高度,与包含文本的列相同。
任何帮助都将不胜感激。 谢谢,
答案 0 :(得分:0)
将单行true(这是已删除的)或maxline 1添加到textview,如上所述
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal|fill_vertical"
android:layout_margin="2dp"
android:gravity="center"
android:maxWidth="150dp"
android:padding="7dp"
android:text="Header 1"
android:textStyle="bold"
android:maxLines="1"
android:singleLine="true" />
修改强>
或者尝试将android:weightSum =“1”设置为Linearlayout并将android:layout_weight =“1”设置为FrameLayout,如下所示
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal|fill_vertical"
android:gravity="fill_horizontal|center_vertical"
android:orientation="vertical"
android:weightSum="1">
<FrameLayout
android:id="@+id/container_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal|fill_vertical"
android:background="@drawable/cell_header_bg"
android:layout_weight="1">
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal|fill_vertical"
android:layout_margin="2dp"
android:gravity="center"
android:maxWidth="150dp"
android:padding="7dp"
android:text="Header 1"
android:textStyle="bold" />
</FrameLayout>