如果我想将图像设置到任何屏幕的底部,那么我们可以在相对布局中使用android:layout_alignParentBottom="true"
。但由于某种原因,我必然会使用LinearLayout。屏幕上还有其他视图(按钮,图像按钮,列表视图)。我想将图像放在屏幕的底部。无论情况如何,用户都可以在屏幕底部看到此图像视图。如何在LinearLayout中实现alignParentBottom="true"
属性。请参阅下面的示例xml。我正在使用example1.xml,但我想查看和文件example2.xml
example1.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textview1"
android:layout_width="fill_parent"
android:layout_height="40dip"
android:background="#ffffff"
android:textColor="#000000"
android:text="I am sunil"
android:gravity="bottom"/>
</LinearLayout>
example2.xml
<
?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textview1"
android:layout_width="fill_parent"
android:layout_height="40dip"
android:background="#ffffff"
android:textColor="#000000"
android:text="I am sunil"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
由于
答案 0 :(得分:1)
假设您同时拥有图库视图和列表视图,您可以为其中一个添加权重,这意味着它会尽可能地增长。如果您为多个视图赋予权重,它们将按比例共享额外的空间。
例如,添加到您的图库和listview android:layout_weight="1"
答案 1 :(得分:0)
您可以gravity="bottom"
使用LinearLayout
。
有关Gravity
属性look here
以下是示例代码,试试这个:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom">
<TextView
android:id="@+id/textview1"
android:layout_width="fill_parent"
android:layout_height="40dip"
android:background="#ffffff"
android:textColor="#000000"
android:text="I am sunil"
android:gravity="bottom"/>
</LinearLayout>
gravity="bottom"
使用LinearLayout
代替TextView
。