我想滑SlidingDrawer由左到右,我有一個選擇:我可以定義的android:在XML文件SlidingDrawer標籤旋轉= 90,但旋轉標籤適用於Android 3.0如何滑動SlidingDrawer左至右
所以我很累,從左到右滑動這個,有沒有人幫助我呢?
這樣,Thanx提前
我想滑SlidingDrawer由左到右,我有一個選擇:我可以定義的android:在XML文件SlidingDrawer標籤旋轉= 90,但旋轉標籤適用於Android 3.0如何滑動SlidingDrawer左至右
所以我很累,從左到右滑動這個,有沒有人幫助我呢?
這樣,Thanx提前
,這是一項艱鉅的任務,但是確實我做了最後使用這個Link檢查
使用此代碼...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:gravity="center_vertical"
android:background="@drawable/logo11"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.sliding.TransparentPanel
android:id="@+id/popup_window"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:padding="1px"
android:background="#ffffff">
<CheckBox android:id="@+id/check1"
android:layout_width="wrap_content"
android:textColor="#FFFFFF"
android:layout_height="wrap_content" android:text="Satellite View" />
<CheckBox android:id="@+id/check2"
android:layout_width="wrap_content"
android:textColor="#FFFFFF"
android:layout_height="wrap_content" android:text="Street View" />
<CheckBox android:id="@+id/check3"
android:textColor="#FFFFFF"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Traffic" />
</com.sliding.TransparentPanel>
<Button android:id="@+id/show_popup_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/slid4_n"/>
</LinearLayout>
退房這個漂亮的示例:
http://blog.sephiroth.it/2011/03/29/widget-slidingdrawer-top-to-bottom/
使其左到右,並使用您希望使用的佈局。
關於視圖的大小,將其設置爲MultiDirectionSlidingDrawer寬度。
我從這個鏈接中得到這個後,得到了ClassNotFoundException:http://blog.sptechnolab.com/2011/02/10/android/android-sliding-drawer/ – Maddy 2013-03-06 06:25:56
請發佈logcat trace .. – 2013-03-06 06:54:45