我的main.xml中有一个线性布局,它有一个listview。现在我想在listview下面创建一个底栏。
Bottombar有一个背景图像和两个带有各自背景图像的按钮。我想把这两个按钮放在普通的背景图像上。
我已经读过这可以使用FrameLayout实现。但是因为我在main.xml中使用LinearLayout作为基本布局,所以使用linearlayout有什么方法可以设计这个设计吗?
答案 0 :(得分:3)
这是一个简单的使用linearlayout并使用加权来显示底栏的示例。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#FF0000FF"
/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="100dip"
android:orientation="horizontal"
android:layout_weight="1"
android:background="#FF00FF00"
>
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Button 1"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Button 2"
/>
</LinearLayout>
</LinearLayout>
你可以通过改变我所展示的纯色来获得背景:
android:background="@drawable/background.png"