【问题标题】:Sliding drawer Android does not open滑动抽屉安卓打不开
【发布时间】:2012-12-19 19:08:37
【问题描述】:

我在 android 中实现了一个抽屉,当打开时显示 4 个按钮,但是当我尝试单击它时,这实际上从未发生过(抽屉没有打开)。但是,当我单击抽屉时,组件 ImageView 处理程序的图像资源会发生变化。

我有以下 XML 代码:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/dynamicCategories"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/background"
        android:orientation="vertical" >

        <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center"
        android:layout_marginTop="10dp"
        android:layout_weight="0.1"
        android:orientation="horizontal" >
             .
             .
             .

        </LinearLayout>

            <LinearLayout
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/LinearLayout01"
                android:layout_width="fill_parent"
                android:layout_height="42dp"
                android:layout_weight="0.1"
                android:gravity="bottom"
                android:orientation="vertical" >

                <SlidingDrawer
                    android:id="@+id/slidingDrawer1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@drawable/bar"
                    android:content="@+id/contentLayout"
                    android:handle="@+id/handle" >

                    <ImageView
                        android:id="@+id/handle"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent"
                        android:layout_weight="1" />

                    <LinearLayout
                        android:id="@+id/contentLayout"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:background="@color/white" >

                        <Button
                            android:id="@+id/button1"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_weight="1"
                            android:text="Button" />

                        <Button
                            android:id="@+id/button2"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_weight="1"
                            android:text="Button" />

                        <Button
                            android:id="@+id/button3"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_weight="1"
                            android:text="Button" />

                        <Button
                            android:id="@+id/button4"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_weight="1"
                            android:text="Button" />
                    </LinearLayout>
                </SlidingDrawer>

            </LinearLayout>

还有java代码:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(com.android.layout.R.layout.channelprogrammation);

    drawer = (SlidingDrawer) findViewById(com.android.layout.R.id.slidingDrawer1);
        // Drawer Programmation
    drawer.setOnDrawerOpenListener(new OnDrawerOpenListener() {
        public void onDrawerOpened() {
            ImageView view = (ImageView) drawer.getHandle();
            // change to bar selected   
               view.setImageResource(com.android.layout.R.drawable.ic_launcher);
            Toast.makeText(getApplicationContext(), "Is open!", 3000)
                    .show();
            drawer.open();
        }
    });
    drawer.setOnDrawerCloseListener(new OnDrawerCloseListener() {

        public void onDrawerClosed() {
            Toast.makeText(getApplicationContext(), "Closed", 3000).show();
            ImageView view = (ImageView) drawer.getHandle();
            view.setImageResource(0);
            drawer.close();
        }
    });

【问题讨论】:

    标签: android slidingdrawer


    【解决方案1】:

    我发现了问题...我的线性布局具有 42dp 的滑动抽屉。因此,当尝试使用滑动抽屉时,线性布局打开但没有足够的空间展开。

    【讨论】:

      【解决方案2】:

      看,伙计,它很容易不要在代码中分配任何东西,简单的布局将非常适合一侧滑动抽屉

      检查布局

      <?xml version="1.0" encoding="utf-8"?>
      <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent">
      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:background="@drawable/bg"
          android:orientation="vertical" >
      
      
      
              <TextView
                  android:id="@+id/text"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_marginLeft="60dp"
                  android:layout_marginTop="20dp"
                  android:text="Your Location"
                  android:textColor="#ff0000ff"
                  android:textStyle="normal" />
      
              </LinearLayout>
      <SlidingDrawer
        android:id="@+id/drawer"
        android:layout_width="match_parent"
           android:layout_height="match_parent"
        android:orientation="horizontal"
        android:layout_gravity="left"
        android:handle="@+id/handle"
        android:content="@+id/content"
       >
        <ImageView 
         android:id="@+id/handle"
         android:layout_width="wrap_content"
         android:layout_height="fill_parent" 
         android:src="@drawable/tag"/>
      
        <LinearLayout
            android:id="@+id/content"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:background="@drawable/slidimage"
            android:orientation="vertical"
            android:layout_gravity="right"
            android:padding="10dp" >
       <TextView
                  android:id="@+id/text1"
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center"
                  android:layout_marginTop="15dp"
                  android:layout_marginLeft="51dp"
                  android:text="SIGN-UP"
                  android:textColor="#000000"
                  android:textSize="28dp"
                  android:textStyle="bold" />
      
             <Button
                 android:id="@+id/sign_up"
                 android:layout_width="110dp"
                 android:layout_height="55dp"
                 android:layout_marginLeft="35dp"
                 android:layout_marginTop="20dp"
                 android:background="@drawable/signup"
                 android:text="Cancel"
                 android:textColor="#ffffffff"
                 android:textSize="20dp" />
      
             <Button
                 android:id="@+id/cancelbtn"
                 android:layout_width="110dp"
                 android:layout_height="55dp"
                 android:layout_marginTop="20dp"
                 android:layout_marginLeft="18dp"
      
                 android:background="@drawable/liginbtn"
                  android:text="Sign up"
                 android:textColor="#ffffffff"
                 android:textSize="20dp" />
         </LinearLayout>
      
        </LinearLayout>
       </SlidingDrawer>
      </FrameLayout>
      

      还有android java代码..

             public class MainActivity extends Activity {
      /** Called when the activity is first created. */
      
           @Override
      public void onCreate(Bundle savedInstanceState) {
          super.onCreate(savedInstanceState);
          requestWindowFeature(Window.FEATURE_NO_TITLE);
          setContentView(R.layout.xml);
      
      }
        }
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多