0
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:background="#000000"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="0.95"
android:layout_marginLeft="0.1dp"
android:layout_marginBottom="0.1dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"
>
<EditText
android:id="@+id/et_1"
android:layout_weight="0.1"
android:layout_marginRight="0.1dp"
android:background="@color/color_white"
android:layout_height="match_parent"
android:layout_width="0dp"
android:text="hell wolrd"
android:inputType="text"
/>
<EditText
android:id="@+id/et_2"
android:layout_weight="0.55"
android:layout_marginTop="0dp"
android:layout_marginRight="0.1dp"
android:background="@color/color_white"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:paddingTop="5dp"
android:text="hell wolrd"
android:inputType="textCapSentences|textMultiLine"
/>
<Spinner
android:id="@+id/spinner_3"
android:layout_weight="0.15"
android:layout_marginRight="0.1dp"
android:background="@color/color_white"
android:layout_height="match_parent"
android:layout_width="0dp"
></Spinner>
<EditText
android:id="@+id/et_4"
android:layout_weight="0.15"
android:layout_marginRight="0.1dp"
android:background="@color/color_white"
android:layout_height="match_parent"
android:layout_width="0dp"
android:inputType="text"
/>
</TableRow>
</TableLayout>
</LinearLayout>
これは、次の結果を示すmy xmlファイルです。アンドロイドテーブルのレイアウトの上端
しかし、私は、コードを実行すると、画面が表示され、この: は、第二のエディットテキストは、問題を与えています。誰かが助けてくれると助かります 考えられる理由は何でしょうか? このマージンですか? Classファイルで何も変更していないときに、なぜそれが起こっているのですか?
へのEditText(et_2)で
を変更してください、あなたが使用しているテーマのスタイルをチェックしましたか?スタイルに余白= "0"とパディング= "0"を設定してください。 – parohy
効果がありません。問題はどこかにある –