如何在底部布局添加三个按钮

时间:2013-07-22 11:56:46

标签: java android android-layout android-button

我想在底部添加三个按钮,如此图像
enter image description here
下面的listview是相同大小,我的代码在下面帮助我如何在我的布局中添加这三个按钮这是我的屏幕
http://imgur.com/DbQJTqU

             <?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="wrap_content"
    android:background="#ffffff"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/border" >

        <ImageView
            android:id="@+id/test_button_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:paddingTop="5dp"
            android:src="@drawable/icon" >
        </ImageView>

        <TextView
            android:id="@+id/test_button_text2"
            android:layout_width="wrap_content"
            android:paddingTop="10dp"
            android:layout_height="wrap_content"
            android:layout_alignTop="@+id/test_button_image"
            android:paddingLeft="10dp"
            android:layout_toRightOf="@+id/test_button_image"
            android:text="San Diego Unified"
            android:textColor="#000000"
            android:textSize="25sp" >
        </TextView>

        <TextView
            android:id="@+id/test_button_text1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
              android:paddingLeft="10dp"
            android:layout_alignLeft="@+id/test_button_text2"
            android:layout_below="@+id/test_button_text2"
            android:paddingBottom="10dp"
            android:text="SCHOOL DISTRICT"
            android:textColor="#000000" >
        </TextView>
     </RelativeLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="40dp"
         android:background="@drawable/border1" 
        android:orientation="horizontal" >

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="left|center_vertical"
            android:layout_weight="1"
            android:ellipsize="end"
            android:paddingLeft="10dp"

            android:singleLine="true"
            android:text="HEALTHY BODIES HEALTHY MINDS "
            android:textColor="#000000"
            android:textStyle="bold"
            android:textSize="11sp" />

        <ImageButton
            android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:paddingRight="5dp"
            android:padding="5dp"

            android:background = "@null"
            android:src="@drawable/facebook" />

        <ImageButton
            android:id="@+id/button"
            android:layout_width="wrap_content"
             android:layout_height="40dp"
             android:background = "@null"
              android:padding="5dp"
            android:src="@drawable/twitter"
            android:text="Button Text" />
    </LinearLayout>
    <RelativeLayout
        android:layout_marginTop="10dp"
android:background="#00FFFF"
android:layout_width="fill_parent"
 android:layout_height="wrap_content" >

 <EditText
    android:id="@+id/editText1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"

    android:hint="Search School By Name"
    android:layout_centerVertical="true" >

  </EditText>
  <ImageView
    android:id="@+id/imageView1"
    android:padding="5dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignTop="@+id/editText1"
    android:layout_alignBottom="@+id/editText1"
    android:layout_alignRight="@+id/editText1"
    android:src="@drawable/title_search" />

 </RelativeLayout>

     <TextView
            android:id="@+id/txtCaption"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
         android:background="#ffffff"
            android:paddingBottom="3dp"
            android:paddingLeft="10dp"
            android:paddingTop="3dp"
            android:text="SELECT A SCHOOL TO VIEW LUNCH OR BREAKFAST MENUS"
            android:textColor="#000000"
            android:textSize="10sp"
            android:textStyle="bold" />

    <LinearLayout
        android:id="@+id/lytContent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/txtCopyright"
        android:layout_marginTop="15dp"
         android:background="@drawable/border2" 
        android:layout_below="@+id/lytTitlebar"
        android:orientation="vertical" >



        <ListView
            android:id="@+id/listMainMenu"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"

            android:listSelector="@drawable/listview_selector"
            android:dividerHeight="1dip"
            android:fadeScrollbars="true" />
    </LinearLayout>



  </LinearLayout>

2 个答案:

答案 0 :(得分:0)

在listview下面进行一次线性布局并将其方向指定为水平,然后使用分隔符(即使用View)逐个添加三个textview,然后在每个textview上放置一个click事件并使用它并将其放置为线性布局重力=底部。

答案 1 :(得分:0)

这是一个简单的解决方案......

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="@drawable/border" >
<Button 1>
<Button 2>-center horizontal and center vertical
<Button 3>-align parent right- true

在按钮中添加要添加的其他属性。