Android Bottombar,两个按钮具有不同的背景和两个按钮的共同背景

时间:2010-04-25 05:45:56

标签: android

我的main.xml中有一个线性布局,它有一个listview。现在我想在listview下面创建一个底栏。

Bottombar有一个背景图像和两个带有各自背景图像的按钮。我想把这两个按钮放在普通的背景图像上。

我已经读过这可以使用FrameLayout实现。但是因为我在main.xml中使用LinearLayout作为基本布局,所以使用linearlayout有什么方法可以设计这个设计吗?

1 个答案:

答案 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>

Linearlayout example view http://web11.twitpic.com/img/91422474-946af96885721237646940af1c9328a9.4bd47fa4-full.png

你可以通过改变我所展示的纯色来获得背景:

    android:background="@drawable/background.png"