我有一个TextView
,我希望将其固定在使用LinearLayout
垂直排列元素的横向活动的底部。
我在文本视图中设置了android:gravity="bottom"
,但它仍然喜欢在LinearLayout
的最后一个元素下面,这正是我不希望它做的。
有什么建议吗?
答案 0 :(得分:110)
您必须通过在其上设置android:layout_weight="1"
来展开其中一个上方视图以填充剩余空间。这会将您的上一个视图推到底部。
以下是我的意思的简要说明:
<LinearLayout android:orientation="vertical">
<View/>
<View android:layout_weight="1"/>
<View/>
<View android:id="@+id/bottom"/>
</LinearLayout>
其中每个子视图高度为"wrap_content"
,其他所有内容均为"fill_parent"
。
答案 1 :(得分:99)
更新:我仍然对这个问题有所了解,这仍然是可接受的答案,我认为我回答得很差。本着确保最佳信息的精神,我决定更新这个答案。
在现代Android中,我会使用ConstraintLayout
来执行此操作。它更高效,更直接。
<ConstraintLayout>
<View
android:id="@+id/view1"
...other attributes elided... />
<View
android:id="@id/view2"
app:layout_constraintTop_toBottomOf="@id/view1" />
...other attributes elided... />
...etc for other views that should be aligned top to bottom...
<TextView
app:layout_constraintBottom_toBottomOf="parent" />
如果您不想使用ConstraintLayout,使用带有展开视图的LinearLayout是一种直接而且很好的方式来处理占用额外空间(请参阅@Matthew Wills的答案)。如果您不想展开底部视图上方任何视图的背景,则可以添加一个不可见的视图来占用空间。
我最初给出的答案有效,但效率低下。对于单个顶级布局而言,低效率可能不是什么大问题,但在ListView
或RecyclerView
中这将是一个糟糕的实现,并且没有任何理由这样做,因为有更好的这样做的方法大致相同,如果不是更简单的努力和复杂程度。
将TextView从LinearLayout中取出,然后将LinearLayout和TextView放在RelativeLayout中。将属性android:layout_alignParentBottom="true"
添加到TextView。除了以上属性之外的所有命名空间和其他属性都省略了:
<RelativeLayout>
<LinearLayout>
<!-- All your other elements in here -->
</LinearLayout>
<TextView
android:layout_alignParentBottom="true" />
</RelativeLayout>
答案 2 :(得分:50)
我认为这将是完美的解决方案:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- Other views -->
<Space
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<!-- Target view below -->
<View
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
答案 3 :(得分:9)
您应该将参数重力置于底部而不是文本视图中,而置于线性布局中。像这样:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="bottom|end">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Something"/>
</LinearLayout>
答案 4 :(得分:6)
步骤1:在线性布局中创建两个视图
第2步:第一个视图必须设置为android:layout_weight =“1”
第3步:第二个视图将自动向下推送
<LinearLayout
android:id="@+id/botton_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<Button
android:id="@+id/btn_health_advice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
答案 5 :(得分:0)
您也可以使用
android:layout_gravity="bottom"
为您的textview
答案 6 :(得分:0)
做这个
<LinearLayout
android:id="@+id/LinearLayouts02"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="bottom|end">
<TextView
android:id="@+id/texts1"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="2"
android:text="@string/forgotpass"
android:padding="7dp"
android:gravity="bottom|center_horizontal"
android:paddingLeft="10dp"
android:layout_marginBottom="30dp"
android:bottomLeftRadius="10dp"
android:bottomRightRadius="50dp"
android:fontFamily="sans-serif-condensed"
android:textColor="@color/colorAccent"
android:textStyle="bold"
android:textSize="16sp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp"
/>
</LinearLayout>
答案 7 :(得分:-2)
试试这个
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="vertical" >
<TextView
android:id="@+id/textViewProfileName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>