5
任何人都可以指向任何公共源代碼,我可以看到如何實現一個可拖動/可拖動的屏幕,就像在Facebook應用程序中執行通知一樣?Facebook-Notification like Pullable Screen
我在DE/AT/CH/BE/UK的應用程序Öffi中也看到了這種模式。
感謝您的幫助!
任何人都可以指向任何公共源代碼,我可以看到如何實現一個可拖動/可拖動的屏幕,就像在Facebook應用程序中執行通知一樣?Facebook-Notification like Pullable Screen
我在DE/AT/CH/BE/UK的應用程序Öffi中也看到了這種模式。
感謝您的幫助!
這實際上比您想象的要容易 - SlidingDrawer
是Android SDK的一部分。只需定義用於抽屜手柄和抽屜內容的佈局即可完成。從文檔:
<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>
哇,沒想到那是那麼容易。非常感謝你! – adrianrdzv 2010-11-26 18:00:26