我需要以编程方式创建UI控件,而我的EditText没有出现在屏幕上。
这是一种骨架xml,我将以编程方式在其中添加表行。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical"
android:paddingLeft="20dp"
android:id="@+id/main_layout">
<TableLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:id="@+id/myTable" >
</TableLayout>
</LinearLayout>
</ScrollView>
这是我的活动中的java代码
TableLayout mainTable = (TableLayout) findViewById(R.id.myTable);
TableRow row = new TableRow(this);
TextView textView = new TextView(this);
textView.setText("Text1");
row.addView(textView);
EditText editText = new EditText(this, null, R.style.editTextStyle);
row.addView(editText);
mainTable.addView(row);
我的editTextStyle如下,
<style name="editTextStyle">
<item name="android:paddingTop">10dp</item>
<item name="android:paddingLeft">7dp</item>
<item name="android:textSize">27sp</item>
<item name="android:layout_width">150dp</item>
<item name="android:layout_height">50dp</item>
</style>
textView正常显示,但editText不正常。有什么想法吗?
如果您使用的是Android 4.0.3,则在LinearLayout中删除
android:focusable="true"
android:focusableInTouchMode="true"
或者,您可以为edittext设置任何背景颜色,例如
在您的样式中,将项目添加为
<item name="android:background">your required color </item>
然后您可以看到编辑文本。
你也可以在你的活动中做以下事情
EditText editText = new EditText(this);
editText.setBackgroundColor(R.color.BLUE);
editText.setTextColor(R.color.BLACK);
row.addView(editText);
在color.xml 中
<resources>
<color name="Black">#000000</color>
<color name="Blue">#FF006767</color>
</resources>