アプリケーションUIを設計しています。次のようなレイアウトが必要です。
(<と>はボタンです)。問題は、TextViewが残りのスペースを埋める方法を知らないことです。2つのボタンのサイズは固定されています。
テキストビューにfill_parentを使用すると、2番目のボタン(>)を表示できません。
画像のように見えるレイアウトを作成するにはどうすればよいですか?
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="<"/>
<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=">"/>
</LinearLayout>
<TEXT VIEW>がLinearLayoutに配置されている場合、<および>のLayout_weightプロパティをTextViewの0および1に設定します。
RelativeLayoutの場合、<および>を左右に揃えて、TextViewの「Layout to left of」および「Layout to right of」プロパティを<および>のidに設定します
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="<"
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=">"
Android:layout_alignParentRight = "true"/>
</RelativeLayout>
</RelativeLayout>
ConstraintLayout
を使用して、次のようなものを見つけました
<Button
Android:id="@+id/left_button"
Android:layout_width="80dp"
Android:layout_height="48dp"
Android:text="<"
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=">"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
動作します。重要なのは、右、左、上、下のEdge制約を適切に設定し、幅と高さを0dp
に設定して、それが自分のサイズであると判断できるようにすることです。
簡単です探しているもの(水平または垂直)に応じて、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>
高い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>
<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="<" />
<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=">" />
</LinearLayout>
</LinearLayout>
layout_width
またはlayout_width
を0dp
に設定して使用できます(残りのスペースを埋めたい方向によって)。次に、layout_weight
を使用して、残りのスペースを埋めます。
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="<"/>
<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=">"/>
</LinearLayout>
</RelativeLayout>`
見つけた
<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" />