我正在设计我的应用程序UI。我需要一个如下布局:
(<和>是按钮)。问题是,我不知道如何确保TextView将填充剩余的空间,两个按钮具有固定的大小。
如果我在文本视图中使用fill_parent,则无法显示第二个按钮(>)。
如何制作看起来像图像的布局?
答案 0 :(得分:186)
来自woodshy的回答为我工作,它比Ungureanu Liviu的答案更简单,因为它没有使用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="<"/>
<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>
答案 1 :(得分:92)
如果&lt;文本视图&gt;置于LinearLayout中,设置&lt;和&gt;对于TextView,为0和1。如果是RelativeLayout,则对齐&lt;和&gt;向左和向右并将TextView的“布局左侧”和“布局右侧”属性设置为&lt;和&gt;
答案 2 :(得分:71)
如果你使用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>
答案 3 :(得分:26)
使用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" />
的工作原理。关键是适当地设置右,左,上和下边缘约束,然后将宽度和高度设置为0dp
并让它找出它自己的大小。
答案 4 :(得分:7)
很简单 您设置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>
答案 5 :(得分:4)
您可以使用高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>
&#13;
答案 6 :(得分:3)
对于那些与<LinearLayout...>
有同样故障的人:
指定android:layout_width="fill_parent"
非常重要,它不适用于wrap_content
。
OTOH,你可以省略android:layout_weight = "0"
,这不是必需的。
我的代码基本上与https://stackoverflow.com/a/25781167/755804中的代码相同(由Vivek Pandey提供)
答案 7 :(得分:2)
您应该避免嵌套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>
答案 8 :(得分:0)
您可以使用layout_width
或layout_width
设置为0dp
(按您想要填充剩余空间的方向)。
然后使用layout_weight
填充剩余空间。
答案 9 :(得分:0)
使用Relativelayout来包装LinearLayout
let button = UIBarButtonItem(
barButtonSystemItem: .action,
target: nil, action: nil
)
button.actionClosure = {
print("hello")
}
答案 10 :(得分:0)
我发现了
<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" />
答案 11 :(得分:0)
使用相对布局时,您可以通过将视图锚定在应该向其拉伸的两个视图上来使其拉伸。尽管将忽略指定的高度,但Android仍然需要height属性,这就是我编写“ 0dp”的原因。示例:
<View
android:id="@+id/topView"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_alignParentTop="true"
android:layout_marginTop="8dp"/>
<View
android:id="@+id/stretchableView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_below="@id/topView"
android:layout_above="@+id/bottomView"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:adjustViewBounds="true"/>
<View
android:id="@id/bottomView"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="16dp"/>