プロパティandroid:layout_width="0px"
を使用するときになぜ配置する必要があるのですか? ndroid:layout_weight
たとえば、次は私の main.xml ファイルであり、その中で使用したandroid:layout_width="wrap_content"
もので、すべて正常にandroid:layout_width="0px"
動作するのに、layout_weight プロパティを使用しているときに使用する必要があるのはなぜですか?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText" android:hint="enter your name"
android:layout_weight="3"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send"
android:id="@+id/button"
android:layout_weight="0"/>
</LinearLayout>
これが私のレイアウトの外観です。