我必須設計screen.I想要將頁腳欄放在列表下面。 在這裏看到:Android佈局設計 - 如何在xml中獲取屏幕高度(佈局)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/main"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="@drawable/wallpaper">
<!-- Header -->
<LinearLayout android:id="@+id/header"
android:background="#0099CC"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<TextView android:id="@+id/routeCode"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:text="Code"
android:width="100dip"
android:height="30dip"
android:textColor="@color/black"
android:gravity="center_horizontal"
/>
<TextView android:id="@+id/routeName"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:text="Name"
android:width="150dip"
android:height="30dip"
android:textColor="@color/black"
android:gravity="center_horizontal"
/>
<TextView android:id="@+id/outlets"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:text="Outlets"
android:width="60dip"
android:height="30dip"
android:textColor="@color/black"
android:gravity="center_horizontal"
/>
</LinearLayout>
<!-- List Divider -->
<View android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="?android:attr/listDivider" />
<!-- ListView (grid_items) -->
<LinearLayout android:id="@+id/layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<ListView android:id="@android:id/list"
android:layout_height="405dp"
android:layout_width="fill_parent">
</ListView>
<TextView android:id="@id/android:empty"
android:layout_width="fill_parent"
android:gravity="center_vertical"
android:layout_height="fill_parent"
android:layout_marginTop="25dp"
android:text="No Sales Routes Define By Admin" />
</LinearLayout>
<!-- Footer -->
<RelativeLayout android:id="@+id/header"
android:background="#000000"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<Button android:text="Exit"
android:id="@+id/button1"
android:background="#0099FF"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:onClick="onExitAction">
</Button>
<Button android:layout_width="wrap_content"
android:text="Next"
android:background="#0099FF"
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
android:id="@+id/button2"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:onClick="onNextAction">
</Button>
</RelativeLayout>
</LinearLayout>
問題是,如果有對列表或幾行沒有數據即時拍攝,然後footerbar會up.How以修復的事兒。要固定在下面part.I不會來拿出....
當我添加此代碼android:layout_weight="1"
它的到來是這樣的:
這是我的標籤XML部分;
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadingEdge="horizontal">
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="#ffffff" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="56dp"
android:gravity="bottom"
android:tabStripEnabled="true"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
</TabHost>
我想要的標籤上面吧..
請幫助我..
在此先感謝
根據你的代碼 – Piraba
,我改變了好吧,沒問題。 :) –