I have just begin learning Android.Its my first app regarding Sliding Drawer. the coding,everything is right,but however the app is not working, Here's the coding
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" > <SlidingDrawer android:id="@+id/drawer" android:layout_width="match_parent" android:layout_height="match_parent" android:content="@+id/content" android:handle="@+id/handle" > <ImageView android:id="@id/handle" android:src="@drawable/ic_launcher" android:layout_width="48dip" android:layout_height="48dip" /> <AnalogClock android:id="@+id/content" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#D0A0A0" /> <GridView android:id="@id/content" android:layout_width="match_parent" android:layout_height="match_parent" /> </SlidingDrawer> </FrameLayout> Plz tell me abt this problem ASAP -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

