0

我想知道是否有可能 - 因此如何 - 将 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>
4

1 回答 1

0

你绝对可以做到,它在我的应用程序中完美运行。事实上,在我的 SlidingDrawer 中,我有一个 GridView。这里有一些 xml 文件:

...
<ListView android:id="@id/android:list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@null"
    android:layout_weight="1"
    android:drawSelectorOnTop="false"
    android:focusable="false"
    android:divider="@null"
    android:alwaysDrawnWithCache="true"
    android:layout_marginBottom="30dip"
    />

<SlidingDrawer
     android:id="@+id/drawer"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:handle="@+id/handle"
     android:content="@+id/browse_all_grid_view">

     <Button android:id="@id/handle"
        android:layout_width="fill_parent" 
        android:layout_height="30dip"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="10dip"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:textColor="#ffffffff"
        android:text="Pull out text"/>

     <GridView
         android:id="@+id/browse_all_grid_view"
         android:background="@drawable/background_dark"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent" 
         android:verticalSpacing="2dp"
         android:horizontalSpacing="0dp"
         android:numColumns="2"
         />

</SlidingDrawer>
...
于 2011-12-23T00:04:57.883 回答