現在 3 行の がTableLayout
あり、各行には 1 つの子 a がありTextView
ます。私の問題は、TextViews
幅が適切でない"match_parent"
ことです。それらの高さと幅を定義しない手順に従いましたが(ドキュメントに記載されているように)、何らかの理由で問題がまだ残っています。
を開いてhierarchyviewer
値を確認しました。必要に応じTableRow
て幅を埋めますがTextView
、行を埋めません。コンテンツをラップするだけです。完全な xml レイアウトを以下に示します。何かアイデアはありますか?
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:background="@drawable/textlines"
android:text="@string/text1_string"
android:textColor="#000000"
android:padding="5dp">
</TextView>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:background="@drawable/textlines"
android:text="@string/text1_string"
android:textColor="#000000"
android:padding="5dp">
</TextView>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:background="@drawable/textlines"
android:text="@string/text1_string"
android:textColor="#000000"
android:padding="5dp">
</TextView>
</TableRow>
</TableLayout>
また、.xml ファイルも含めます@drawable/textlines
。おそらく問題はそこにありますか?(textlines
コードは、国境に関する質問に関してここで提供されているソリューションから取得されています)私はそれをほとんど理解しており、それが私の問題に影響を与えるべきではないと思いますが、間違っている可能性があります. とにかく、ここにあります:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#FF000000" />
<solid android:color="#FFDDDDDD" />
</shape>
</item>
<item android:top="1dp" android:bottom="1dp">
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#FFDDDDDD" />
<solid android:color="#00000000" />
</shape>
</item>
</layer-list>