我正在开发和安装Android应用程序,其中我创建了一个包含ImageView和TextView的ListActivity。还可以拖放这些对象,以便可以移动它们。我现在要做的是在屏幕底部有一个按钮,而不是列表。
当用户滚动时,按钮将始终保持在那里。我找到了这个link,但当我做了这个链接建议没有按钮确实出现时,而是我有一个巨大的空白空间占据了屏幕的四分之一。有人能指出我正确的方向吗?
好,所以这里是设置为ListActivity的.xml文件
<?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">
<DragNDrop.DragNDropListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</DragNDrop.DragNDropListView>
</LinearLayout>
希望它可以提供帮助
答案 0 :(得分:4)
您的观点应该是这样的:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="Button"
android:layout_centerHorizontal="true"/>
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/btn"/>
</RelativeLayout>
使用数据填充列表视图,并看到按钮将在其位置上滚动。
答案 1 :(得分:0)
我认为ListActivity是一种不好的做法。 您需要做的是将活动从ListActivity更改为Activity。在布局文件中,执行以下操作:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_contant"
android:orientation="horizontal">
<DragNDrop.DragNDropListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_contant">
</DragNDrop.DragNDropListView>
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"/>
</LinearLayout>
在创建时,您可以通过执行以下操作获取列表参考:
ListView lv = (ListView)findViewById(R.id.list);
为了使按钮可单击,用户OnClickListener