次の XML があります。
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/verylongtext" android:layout_weight="1000" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sometext" android:onClick="onClickButton" android:layout_weight="1" />
</LinearLayout>
ボタンのテキストにまだ改行があるlayout_weightを設定しましたが、ボタンは表示されるはずです
何らかのテキスト
しかし、それは示しています
いくつか
外線
これはなぜですか、どうすれば修正できますか?
ありがとう!