web-dev-qa-db-ja.com

Viewでレイアウトを作成して残りのスペースを埋める方法は?

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

Example of desired layout

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

テキストビューにfill_parentを使用すると、2番目のボタン(>)を表示できません。

画像のように見えるレイアウトを作成するにはどうすればよいですか?

172
Luke Vo

Woodshyからの回答は私のために働いた、それはRelativeLayoutを使用しないので、それはUngureanu Liviuによる回答よりも簡単です。私は明確にするためにレイアウトを与えています:

<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>
186
Vivek Pandey

<TEXT VIEW>がLinearLayoutに配置されている場合、<および>のLayout_weightプロパティをTextViewの0および1に設定します。
RelativeLayoutの場合、<および>を左右に揃えて、TextViewの「Layout to left of」および「Layout to right of」プロパティを<および>のidに設定します

92
woodshy

RelativeLayoutを使用する場合、次のように実行できます。

<RelativeLayout
    Android:layout_width = "fill_parent"
    Android:layout_height = "fill_parent">
    <ImageView
        Android:id = "@+id/my_image"
        Android:layout_width = "wrap_content"
        Android:layout_height = "wrap_content"
        Android:layout_alignParentTop ="true" />
    <RelativeLayout
        Android:id="@+id/layout_bottom"
        Android:layout_width="fill_parent"
        Android:layout_height = "50dp"
        Android:layout_alignParentBottom = "true">
        <Button
            Android:id = "@+id/but_left"
            Android:layout_width = "80dp"
            Android:layout_height = "wrap_content"
            Android:text="&lt;"
            Android:layout_alignParentLeft = "true"/>
        <TextView
            Android:layout_width = "fill_parent"
            Android:layout_height = "wrap_content"
            Android:layout_toLeftOf = "@+id/but_right"
            Android:layout_toRightOf = "@id/but_left" />
        <Button
            Android:id = "@id/but_right"
            Android:layout_width = "80dp"
            Android:layout_height = "wrap_content"
            Android:text="&gt;"
            Android:layout_alignParentRight = "true"/>
    </RelativeLayout>
</RelativeLayout>
71
Ungureanu Liviu

ConstraintLayoutを使用して、次のようなものを見つけました

<Button
    Android:id="@+id/left_button"
    Android:layout_width="80dp"
    Android:layout_height="48dp"
    Android:text="&lt;"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    Android:layout_width="0dp"
    Android:layout_height="0dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toRightOf="@+id/left_button"
    app:layout_constraintRight_toLeftOf="@+id/right_button"
    app:layout_constraintTop_toTopOf="parent" />

<Button
    Android:id="@+id/right_button"
    Android:layout_width="80dp"
    Android:layout_height="48dp"
    Android:text="&gt;"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

動作します。重要なのは、右、左、上、下のEdge制約を適切に設定し、幅と高さを0dpに設定して、それが自分のサイズであると判断できるようにすることです。

27
Tom Howard

簡単です探しているもの(水平または垂直)に応じて、minWidthまたはminHeightを設定します。そして、他のオブジェクト(残りのスペースを埋めるオブジェクト)に対して、ウェイトを1に設定し(コンテンツをラップする幅を設定)、残りの領域を埋めます。

<LinearLayout
        Android:layout_width="wrap_content"
        Android:layout_height="match_parent"
        Android:layout_weight="1"
        Android:gravity="center|left"
        Android:orientation="vertical" >
</LinearLayout>
<LinearLayout
        Android:layout_width="80dp"
        Android:layout_height="fill_parent"
        Android:minWidth="80dp" >
</LinearLayout>
7
Daniel

高いlayout_weight属性を使用できます。以下に、ListViewの下部にボタンがあるすべての空き領域を取得するレイアウトを示します。

<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent"
    tools:context=".ConfigurationActivity"
    Android:orientation="vertical"
    >

        <ListView
            Android:id="@+id/listView"
            Android:layout_width="fill_parent"
            Android:layout_height="fill_parent"
            Android:layout_weight="1000"
            />


        <Button
            Android:id="@+id/btnCreateNewRule"
            Android:layout_width="fill_parent"
            Android:layout_height="wrap_content"
            Android:layout_weight="1"
            Android:text="Create New Rule" />



        <Button
            Android:id="@+id/btnConfigureOk"
            Android:layout_width="fill_parent"
            Android:layout_height="wrap_content"
            Android:layout_weight="1"
            Android:text="Ok" />


</LinearLayout>
4
thinker

<LinearLayout...>で私と同じグリッチを持っている人のために:

Android:layout_width="fill_parent"を指定することが重要です。wrap_contentでは機能しません。

OTOH、Android:layout_weight = "0"を省略できますが、必須ではありません。

私のコードは、基本的に https://stackoverflow.com/a/25781167/755804 のコードと同じです(by Vivek Pandey)

2つの相対レイアウトをネストすることは避けてください。相対レイアウトでは、描画のために常に2パス(他のタイプのレイアウトでは1パス)になるためです。それらをネストすると指数関数的になります。残りのスペースを埋めたい要素には、width = 0およびweight = 1の線形レイアウトを使用する必要があります。この答えは、パフォーマンスとプラクティスにとって優れています。覚えておいてください:他に選択肢がない場合にのみ相対レイアウトを使用してください。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
          Android:layout_width="match_parent"
          Android:layout_height="match_parent"
          Android:orientation="vertical">

    <ImageView
        Android:id="@+id/imageview"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content" />

    <LinearLayout
        Android:layout_width="match_parent"
        Android:layout_height="50dp"
        Android:orientation="horizontal">

        <Button
            Android:id="@+id/prev_button"
            Android:layout_width="80dp"
            Android:layout_height="wrap_content"
            Android:text="&lt;" />

        <TextView
            Android:layout_width="0dp"
            Android:layout_height="wrap_content"
            Android:layout_weight="1"
            Android:ellipsize="end"
            Android:singleLine="true"
            Android:gravity="center"
            Android:text="TextView" />

        <Button
            Android:id="@+id/next_button"
            Android:layout_width="80dp"
            Android:layout_height="wrap_content"
            Android:text="&gt;" />
    </LinearLayout>
</LinearLayout>
2
Livio

layout_widthまたはlayout_width0dpに設定して使用できます(残りのスペースを埋めたい方向によって)。次に、layout_weightを使用して、残りのスペースを埋めます。

0
taynguyen

relativeLayoutを使用してLinearLayoutをラップする

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:round="http://schemas.Android.com/apk/res-auto"
xmlns:app="http://schemas.Android.com/apk/res-auto"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<LinearLayout
Android:layout_width="fill_parent"
Android:layout_height="match_parent"
Android:orientation="vertical">
    <Button
        Android:layout_width = "wrap_content"
        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 = "wrap_content"
        Android:layout_height = "wrap_content"
        Android:text="&gt;"/>

</LinearLayout>

</RelativeLayout>`
0
john liao

見つけた

 <TextView
        Android:layout_width="wrap_content"
        Android:layout_height="match_parent"
        Android:layout_marginEnd="10dp"
        Android:fontFamily="casual"
        Android:text="(By Zeus B0t)"
     ``   Android:textSize="10sp"
        Android:gravity="bottom"
        Android:textStyle="italic" />
0
Zeus B0t