我有一个滚动表布局,该布局应该在游戏的各个级别上显示用户进度。一切正常,除了xml宽度设置为match_parent之外,行宽似乎都是换行内容。我需要将表数据动态添加。这是将行添加到tableView的代码:
public View getView(LayoutInflater inflater, Context context, int position) {
View view = inflater.inflate(R.layout.prog_cell_layout, null);
String letter = " " + (char)('a' + position) + " ";
TextView tv = (TextView)view.findViewById(R.id.progLetterName);
tv.setText(letter);
return view;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_progress, container, false);
//It starts here. There are 26 rows
TableLayout tab = (TableLayout)rootView.findViewById(R.id.tableView);
for (int i = 0; i < 26; i++) {
View conView = getView(inflater, getContext(), i);
TableRow.LayoutParams lp = new TableRow.LayoutParams(
TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.MATCH_PARENT
);
conView.setLayoutParams(lp);
tab.addView(conView);
}
return rootView;
}
方法在充当表容器的片段类中找到。我知道表格本身是正确的宽度,但是行的宽度不是。
从xml布局读取行:
<?xml version="1.0" encoding="utf-8"?>
<TableRow android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_green_dark"
>
<TextView
android:id="@+id/progLetterName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:layout_marginLeft="10dp"
android:text="a"
android:textSize="20dp"
android:fontFamily="sans-serif-light"
android:textAlignment="center"
/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:text="TextView"
android:textSize="20sp"
android:fontFamily="sans-serif-light"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"/>
</RelativeLayout>
</TableRow>
我尝试了很多事情...但是显然没有一个能够使TableRow的大小与父级的宽度匹配。
答案 0 :(得分:0)
您需要在TableLayout容器内添加TableRow,并非没有。如下更改布局文件,将TableLayout添加为父布局,并且在TableLayout中,每一行应对应于
您不需要android:orientation="horizontal"
的RelativeLayout即可适用于LinearLayout之类的布局
<TableLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<TableRow android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_green_dark">
............