2
我知道有很多類似的問題,但我沒有找到能夠幫助我的答案,所以這是我的問題。我已成功地做到這一點: 列表活動的自定義佈局Android
但我想是這樣的:
所以我想在屏幕底部的固定按鈕。而我的佈局是一個ListActivity自定義佈局,它看起來像這樣:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Delete" />
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/button1"
android:text="@+id/label"
android:gravity="center"
android:textSize="20px" >
</TextView>
<ImageButton
android:id="@+id/rightArrow"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@null"
android:layout_alignParentRight="true"
android:src="@drawable/right_arrow"
/>