我正在拼命尝试以编程方式在表中设置单元格的TextView属性,但无法使其工作!每当我设置布局属性时,该字段将不会出现(但不会出现任何错误或异常)。我把它归结为这个简单的例子:
package mmo.application.listpro;
import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.TableLayout;
import android.widget.TableRow;
import android.widget.TextView;
public class Test extends Activity
{
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TableLayout table = new TableLayout(this);
TableRow row = new TableRow(this);
for (String label: new String[] {"field1", "field2", "field3"}) {
TextView tv = new TextView(this);
tv.setText(label);
// LinearLayout.LayoutParams lp =
// new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,
// LinearLayout.LayoutParams.WRAP_CONTENT);
// lp.setMargins(2, 2, 2, 2); // left/top/right/bottom
// tv.setLayoutParams(lp);
row.addView(tv);
}
table.addView(row);
setContentView(table);
}
}
这将显示三个字段,但是当您取消注释五个注释行时,将显示NOTHING。为什么会这样?为什么设置布局参数会导致我的TextView不出现?我被卡住了!我错过了什么?
迈克尔
PS:这是清单,如果某种灵魂很快想要试试这个:<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mmo.application.listpro" android:versionCode="1" android:versionName="Development">
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:debuggable="true">
<activity
android:label="test"
android:name=".Test"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:targetSdkVersion="8" android:minSdkVersion="8" />
</manifest>
答案 0 :(得分:6)
TableRow always enforces those values to be respectively MATCH_PARENT and WRAP_CONTENT
。因此,您只需创建默认的TableRow.LayoutParams,设置边距并将其应用于TextView。
TableRow.LayoutParams lp = new TableRow.LayoutParams();
lp.setMargins(2, 2, 2, 2);
row.addView(tv, lp);;
答案 1 :(得分:0)
TextView
的直接父级是TableRow
而不是TableLayout
,因此请使用TableRow.LayoutParams
代替TableLayout.LayoutParams
。