由于某些原因,这对我不起作用。 2) an-6ren">
gpt4 book ai didi

java - 如何在android线性布局中对齐父底部?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:20:22 24 4
gpt4 key购买 nike

我有一个线性布局

我想在它的底部创建一个切片。

我知道有一些选择,但我有点困惑

1) android:layout_gravity:"bottom" --> 由于某些原因,这对我不起作用。

2) android:gravity_weight="0" 并给它之前的兄弟 android:gravity_weight:"1"

3) android:height="wrap_content" 并给它之前的兄弟 android:height:"match_parent"

我知道如何使用 relativeLayout 做到这一点,但我想练习 linearLayout

你有什么建议?

<?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:background="@color/blue_bg"
android:orientation="vertical" >

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="5dp"
android:src="@drawable/signup_illu_why" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=""
android:orientation="horizontal" />

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/signup_skip_icon" />

</LinearLayout>

最佳答案

其实可以把父元素的gravity设置为bottom

<?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:background="@color/blue_bg"
android:orientation="vertical"
android:gravity="bottom" >

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="5dp"
android:src="@drawable/signup_illu_why" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=""
android:orientation="horizontal" />

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/signup_skip_icon" />

</LinearLayout>

关于java - 如何在android线性布局中对齐父底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20632407/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com