でテーブルレイアウトを上適合しない:私は多くのことをググすべての要素は、以下が私のxmlファイルであるアンドロイド
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:stretchColumns="*" >
<TableRow
android:id="@+id/tableRow0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<TextView
android:id="@+id/billTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/billTotal"
android:width="0dp" />
<EditText
android:id="@+id/billEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="none"
android:width="0dp" >
<requestFocus />
</EditText>
</TableRow>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<TextView
android:id="@+id/tenTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_weight="1"
android:text="10%"
android:width="0dp" />
<TextView
android:id="@+id/fifteenTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="15%"
android:width="0dp" />
<TextView
android:id="@+id/twentyTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="20%"
android:width="0dp" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<TextView
android:id="@+id/tipTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/tip"
android:width="0dp" />
<EditText
android:id="@+id/tip10EditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="none"
android:text="@string/zero"
android:width="0dp" />
<EditText
android:id="@+id/tip15EditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="none"
android:text="@string/zero"
android:width="0dp" />
<EditText
android:id="@+id/tip20EditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="none"
android:text="@string/zero"
android:width="0dp" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<TextView
android:id="@+id/totalTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/total"
android:layout_weight="1" />
<EditText
android:id="@+id/total10EditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:text="@string/zero"
android:layout_weight="1" android:inputType="none"/>
<EditText
android:id="@+id/total15EditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:text="@string/zero"
android:layout_weight="1" android:inputType="none" />
<EditText
android:id="@+id/total20EditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:text="@string/zero"
android:layout_weight="1" android:inputType="none" />
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<TextView
android:id="@+id/customTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/custom"
android:layout_weight="1" />
<SeekBar
android:id="@+id/customSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/customTipTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="18%"
android:layout_weight="1" />
</TableRow>
<TableRow
android:id="@+id/tableRow5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<TextView
android:id="@+id/tipCustomTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/tip"
android:layout_weight="1" />
<EditText
android:id="@+id/tipCustomEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:text="@string/zero"
android:layout_weight="1" android:inputType="none" />
<TextView
android:id="@+id/totalCustomTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/total"
android:layout_weight="1" />
<EditText
android:id="@+id/totalCustomEditText"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:ems="10"
android:text="@string/zero"
android:layout_weight="1" android:inputType="none" />
</TableRow>
、しかし、私は新しいです
私の問題への解決策を見つけられませんでしたアンドロイドプログラミング。
The GUI
私はここで立ち往生しています:以下
は GUIの設計です。助けてください。
ありがとうございます。あなたが必要とされないときandroid:layout_weight="1"
を削除してもmatch_parent
へwrap_content
からいくつかのビューlayout_widthを変更する必要が
おかげで多くのことを試してみてください。 @ ChiragGhori –