【发布时间】:2014-01-05 02:41:24
【问题描述】:
我有一个线性布局
我想在它的底部创建一个切片。
我知道有一些选择,但我有点困惑
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>
【问题讨论】:
-
你试过使用RelativeLayout吗?它可能更适合您的需求,RelativeLayout 更高效,通常是推荐的方式。
-
我知道如何使用relativeLayout,但我想练习linearLayout
-
类似的-查看解决方案stackoverflow.com/a/31987803/3624307
标签: java android android-layout layout