Android:以编程方式设置样式时不显示EditText

时间:2012-08-01 10:00:33

标签: android styles android-edittext tablelayout

我需要以编程方式创建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>

这是我的Activity中的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不是。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

如果您使用的是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>