2

我知道有很多类似的问题,但我没有找到对我有帮助的答案,所以这是我的问题。我设法做到了: 原样

但我想要的是这样的: 成为

所以我想在屏幕底部有一个固定按钮。我的布局是 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" 
    />

4

1 回答 1

7

您粘贴的内容看起来像是列表行的自定义布局,而不是ListActivity.

此处找到的 Android 文档中:

屏幕布局

ListActivity 有一个默认布局,它由屏幕中央的单个全屏列表组成。但是,如果您愿意,您可以通过在 onCreate() 中使用 setContentView() 设置您自己的视图布局来自定义屏幕布局。为此,您自己的视图必须包含一个 ID 为“@android:id/list”的 ListView 对象(如果它在代码中,则为列表)

于 2013-03-01T01:37:14.067 回答