1. ホーム
  2. アンドロイド

[解決済み】Viewで残りのスペースを埋めるレイアウトにするには?

2022-04-10 19:58:29

質問

アプリケーションのUIをデザインしています。以下のようなレイアウトが必要です。

(< と > はボタン)。問題は、2つのボタンが固定サイズで、TextViewが残りのスペースを埋めることを確認する方法がわからないことです。

テキストビューにfill_parentを使うと、2つ目のボタン(>)が表示されません。

画像のようなレイアウトを作るにはどうしたらいいですか?

どのように解決するのですか?

woodshy さんの回答は、私の場合はうまくいきました。 RelativeLayout . わかりやすくするために、私のレイアウトを記載しています。

<LinearLayout 
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal"
      >

     <Button
        android:layout_width = "80dp"
        android:layout_weight = "0"
        android:layout_height = "wrap_content"
        android:text="&lt;"/>
     <TextView
        android:layout_width = "fill_parent"
        android:layout_height = "wrap_content"
        android:layout_weight = "1"/>
     <Button
        android:layout_width = "80dp"
        android:layout_weight = "0"
        android:layout_height = "wrap_content"
        android:text="&gt;"/>   
 </LinearLayout>