如何在列表视图的底部对齐视图?

时间:2013-11-18 08:08:40

标签: android android-layout android-listview

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/main_bg"
>

<RelativeLayout android:layout_width="fill_parent"
    android:layout_height="47dip" android:layout_alignParentTop="true"
    android:background="@drawable/tab_bar" android:id="@+id/rel_jobDesc">

    <TextView android:layout_width="wrap_content" android:id="@+id/txt_SEARCH_TITLE"
        android:layout_height="wrap_content" android:layout_centerInParent="true"
        android:text="Description" android:textStyle="bold" android:textSize="20dip"
        android:textColor="#fff"></TextView>
</RelativeLayout>
<ListView
   android:id="@+id/list"
   android:cacheColorHint="#00000000"
   android:layout_marginTop="60dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/job_match_bg" >

</ListView>

<Button
    android:id="@+id/btn_more"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="@drawable/viewmore"
    android:layout_centerHorizontal="true"/>

</RelativeLayout>

我是新的android开发者,我不知道开发这个plz帮助 而且我想在底部添加

textView width fiil_parent 并在中间和右侧按钮

左按钮和文本

抱歉英语不好任何帮助表示赞赏。 提前谢谢

     moreButton

      textView

L-Button文本R_button


2 个答案:

答案 0 :(得分:1)

如果您正在寻找L-Button Text R-Button,则需要水平添加linearLayout,然后添加按钮文本按钮并为它们添加权重以使其看起来更漂亮尝试此代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/main_bg"
>

<RelativeLayout android:layout_width="fill_parent"
android:layout_height="47dip" android:layout_alignParentTop="true"
android:background="@drawable/tab_bar" android:id="@+id/rel_jobDesc">

<TextView android:layout_width="wrap_content" android:id="@+id/txt_SEARCH_TITLE"
    android:layout_height="wrap_content" android:layout_centerInParent="true"
    android:text="Description" android:textStyle="bold" android:textSize="20dip"
    android:textColor="#fff"></TextView>
</RelativeLayout>

<ListView
   android:id="@+id/list"
   android:cacheColorHint="#00000000"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/linearLayout1" //*** this is important to make the list float over button-text-button
    android:layout_below="@+id/rel_jobDesc"
android:background="@drawable/job_match_bg" >

</ListView>

<LinearLayout // here what you care about
    android:id="@+id/linearLayout1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
     >

    <Button
        android:id="@+id/btn_more"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"
        android:text="Left" />

    <TextView
        android:id="@+id/Left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="TExt!!"
         />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"
        android:text="Right" />

</LinearLayout>

</RelativeLayout>

你应该有以下PIC: P.S:我没有照片所以我改变了背景颜色

enter image description here

获取想法,并按照您喜欢的方式激活代码。如果你没有得到这个想法,请随时问我。希望我得到你想要的东西。

<强> ---------------------------------编辑---------- --------------------------------

这里是在linearLayout上方和ListView

下添加一个新行
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/main_bg"
>

<RelativeLayout android:layout_width="fill_parent"
android:layout_height="47dip" android:layout_alignParentTop="true" 
android:background="@drawable/tab_bar" android:id="@+id/rel_jobDesc">

<TextView android:layout_width="wrap_content" android:id="@+id/txt_SEARCH_TITLE"
android:layout_height="wrap_content" android:layout_centerInParent="true"
android:text="Description" android:textStyle="bold" android:textSize="20dip"
android:textColor="#fff"></TextView>
</RelativeLayout>

<ListView
android:id="@+id/list"
android:cacheColorHint="#00000000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/AboveLinear"  //*** this is important to make the list float over button-text-button
android:layout_below="@+id/rel_jobDesc"
android:background="@drawable/job_match_bg" >

</ListView>

<TextView //this is the text the is between linear and list
android:id="@+id/AboveLinear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/linearLayout1"
android:layout_centerHorizontal="true"
android:text="Right here what ever you want" />

<LinearLayout // here what you care about
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
 >

<Button
    android:id="@+id/btn_more"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="0.5"
    android:text="Left" />

<TextView
    android:id="@+id/Left"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="TExt!!"
     />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="0.5"
    android:text="Right" />

</LinearLayout>

</RelativeLayout>

它看起来像这样:

enter image description here

很高兴我能提供帮助,请注意我提供给组件的ID

答案 1 :(得分:0)

将此属性用于按钮

android:layout_alignBottom="@+id/list"