我想知道是否有可能 - 因此如何 - 将 SlidingDraw 放在 listView 上?情况是:我有一个自定义列表适配器 - 膨胀布局和所有这些 - 创建一个列表。我想在此列表上进行滑动抽签。但是,当我尝试使用 SlidingDrawer 代码将主布局设置为 xml 文件时,我会强制关闭,因为我认为它会干扰适配器。感谢您的任何建议。
这是我的大部分代码:
public class BandApp extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//this is where I have a problem
setContentView(R.layout.main);
Activity activity = this;
activity.setTitle("Title");
final String[] values = {"(where i put some urls)","@","@","@","@"};
MyAdapter Adapter = new MyAdapter(this, values);
setListAdapter(Adapter);
当我删除 setContentView 它可以工作,当我添加它时,它不会(强制关闭)。但这就是带有 SlideDrawer 的 xml 布局所在的位置。:/ 谢谢你的帮助
这是xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<SlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:handle="@+id/handle"
android:content="@+id/content">
<ImageView
android:id="@id/handle"
android:layout_width="88dip"
android:layout_height="44dip" />
<GridView
android:id="@id/content"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</SlidingDrawer>
</LinearLayout>