2

我需要一个带有 TextViews 和 EditTexts 的 TableLayout,它应该像一个填字游戏。

我已经对此进行了测试,LinearLayout, width=0dp and weight=1,但它并没有像我想要的那样工作。然后我用 TableLayout 试过了,我想我已经接近解决方案了。我已经在 XML 或 Java 中测试了高度和宽度,但它不起作用。我现在的问题是所有 TextView 都比 EditText 薄,我不知道为什么以及如何使它们看起来一样。

XML 文件:

<!-- activity_sraetsel_main.xml -->
<TableLayout    xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/table"
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent" 
            android:orientation="vertical" >        
</TableLayout>

<!-- activity_sraetsel_row.xml -->
<?xml version="1.0" encoding="utf-8"?>
<TableRow   xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/tableRow"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:gravity="center_horizontal">
</TableRow>

<!-- activity_sraetsel_edittext.xml -->
<?xml version="1.0" encoding="utf-8"?>
<EditText   xmlns:android="http://schemas.android.com/apk/res/android"
        android:background="@drawable/cell_border"
        android:id="@+id/textView"
        android:inputType="textCapCharacters"
        android:gravity="center_horizontal"
        android:maxLength="1">
</EditText>

<!-- activity_sraetsel_textview.xml -->
<?xml version="1.0" encoding="utf-8"?>
<TextView   xmlns:android="http://schemas.android.com/apk/res/android"
        android:background="@drawable/cell_border"
        android:id="@+id/textView"
        android:textSize="6.5sp"
        android:singleLine = "false" >
</TextView>

<!-- cell_border.xml -->
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF"/>
<stroke android:width="1dp" android:color="#515151"/>
<padding android:left="10dp" android:top="5dp"
android:right="10dp" android:bottom="5dp" />
</shape>

和 java 部分,我把它们放在一起:

TableLayout table = (TableLayout) this.findViewById(R.id.table);
for (int y = 0; y < hoehe; y++) {
    // Inflate your row "template" and fill out the fields.
    TableRow row = (TableRow) LayoutInflater.from(this).inflate(R.layout.activity_sraetsel_row, null);
    for (int x = 0; x < breite; x++) {
        if (raetsel[y][x].startsWith(",", 1)) {
            EditText eText = (EditText) LayoutInflater.from(this).inflate(R.layout.activity_sraetsel_edittext, null);
            if (!(raetsel[y][x].startsWith("a"))) {
                eText.setText(raetsel[y][x].substring(0, 1));
            } //if
            eText.setWidth(60);
            eText.setHeight(60);
            row.addView(eText);
            Log.d(TAG, "SRaetselMain, AntwortFeld erstellt");
        } else {
            TextView vText = (TextView) LayoutInflater.from(this).inflate(R.layout.activity_sraetsel_textview, null);
            vText.setText(raetsel[y][x].substring(0, raetsel[y][x].indexOf("|")));
            vText.setWidth(60);
            vText.setHeight(60);
            row.addView(vText);
            Log.d(TAG, "SRaetselMain, FrageFeld erstellt");
        } //if
    } //for
    table.addView(row);
} //for

table.requestLayout();

最后是它的样子:

EDIT1: 使用android:layout_height="match_parent"XML 中的 TextView 并且没有 Activity 中的 TextView 的 setHeight():

http://i.stack.imgur.com/btzj4.png

EDIT2:android:layout_weight="1"android:layout_height="0dp"看起来像 EDIT1

现在我已经在没有TextViews 并且只使用EditText 的情况下对其进行了测试,我发现问题出在textSize 上。如果我在没有该选项的情况下制作 TextView,android:textSize="6.5sp"它会起作用。但是文本太大了,不幸的是我需要这个文本那么小。

EDIT3: 我已经用 LinearLayout 和两个 TextViews 试过这个。我真的不知道如何改变这两个视图的高度相同。

http://i.stack.imgur.com/wIENf.png

感谢您在这件事上的帮助。

4

2 回答 2

2

回答我自己的问题:

问题由此解决:android:baselineAligned="false" 将此行放入此 XML 中即可!

 <!-- activity_sraetsel_row.xml -->
<?xml version="1.0" encoding="utf-8"?>
<TableRow   xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tableRow"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    android:gravity="center_horizontal"
    android:baselineAligned="false">
</TableRow>

感谢您的帮助!

于 2013-07-15T12:30:33.197 回答
0

在 XML 中使用android:layout_height="match_parent"forTextView并删除setHeight()for TextViewin Activity。由于您正在EditText手动设置大小,因此无需更改它。通过这样做TextView将占用所有空间height

编辑

<!-- activity_sraetsel_edittext.xml -->
<?xml version="1.0" encoding="utf-8"?>
<EditText   xmlns:android="http://schemas.android.com/apk/res/android"
        android:background="@drawable/cell_border"
        android:id="@+id/textView"
        android:inputType="textCapCharacters"
        android:gravity="center_horizontal"
        android:layout_width="60dp"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:maxLength="1">
</EditText>

<!-- activity_sraetsel_textview.xml -->
<?xml version="1.0" encoding="utf-8"?>
<TextView   xmlns:android="http://schemas.android.com/apk/res/android"
        android:background="@drawable/cell_border"
        android:id="@+id/textView"
        android:textSize="6.5sp"
        android:layout_width="60dp"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:singleLine = "false" >
</TextView>

尝试设置layout_heightto0dplayout_weightto 1

View如果您想要两个s 的高度相同,那么layout_weight可能会有所帮助。

于 2013-07-12T12:23:52.873 回答