0
A
回答
0
使用slidingDrawer找到下面的示例代碼。 main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/icon_image"
android:gravity="bottom"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageVW"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/vincent" >
</ImageView>
<SlidingDrawer
android:id="@+id/SlidingDrawer"
android:layout_width="wrap_content"
android:layout_height="250dip"
android:content="@+id/contentLayout"
android:handle="@+id/slideHandleButton"
android:padding="10dip" >
<Button
android:id="@+id/slideHandleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/closearrow" >
</Button>
<LinearLayout
android:id="@+id/contentLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center|top"
android:orientation="vertical"
android:background="#ff00ff"
android:padding="10dip" >
<Button
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Content" >
</Button>
<Button
android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Content" >
</Button>
<Button
android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Content" >
</Button>
</LinearLayout>
</SlidingDrawer>
</LinearLayout>
slidingDrawerExample.java
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.SlidingDrawer;
import android.widget.SlidingDrawer.OnDrawerCloseListener;
import android.widget.SlidingDrawer.OnDrawerOpenListener;
import android.widget.Toast;
public class slidingDrawerExample extends Activity {
Button slideHandleButton;
SlidingDrawer slidingDrawer;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
slideHandleButton = (Button) findViewById(R.id.slideHandleButton);
slidingDrawer = (SlidingDrawer) findViewById(R.id.SlidingDrawer);
Button b = (Button) findViewById(R.id.Button01);
b.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Toast.makeText(getBaseContext(), "This is button 1", 9).show();
}
});
slidingDrawer.setOnDrawerOpenListener(new OnDrawerOpenListener() {
public void onDrawerOpened() {
slideHandleButton.setBackgroundResource(R.drawable.openarrow);
}
});
slidingDrawer.setOnDrawerCloseListener(new OnDrawerCloseListener() {
public void onDrawerClosed() {
slideHandleButton.setBackgroundResource(R.drawable.closearrow);
}
});
}
}
相關問題
- 1. 單擊一個按鈕更改面板
- 2. 如何在Android側菜單中的某個項目中單擊某個按鈕時刷新片段
- 3. 在JavaScript中單擊某個單選按鈕時啓用按鈕
- 4. Android單擊另一個按鈕後面的按鈕
- 5. 更新面板內的每個按鈕單擊清單清單?
- 6. 用戶單擊按鈕時打開另一個現有面板
- 7. Selenium WebDriver - Java - 單擊某個按鈕
- 8. 單擊按鈕時的頁面轉換
- 9. 用按鈕移動面板左右按鈕單擊C#
- 10. 單擊按鈕和側面菜單從隱藏中滑出
- 11. 創建多個面板並在按鈕上單擊顯示一個面板wpf
- 12. 刷新用戶點擊某個按鈕時的頁面ajax
- 13. 側面菜單上的按鈕佈局
- 14. 如何在ASP.Net中單擊按鈕時顯示/隱藏面板
- 15. 在按鈕上單擊面板或組框時添加標籤
- 16. 單擊一個按鈕時禁用多個按鈕點擊
- 17. 當我點擊一個按鈕時打開一個面板
- 18. 2幀內的Jpanels。左面板是帶按鈕的菜單。使用按鈕切換右側面板。
- 19. 按鈕單擊一個UpdatePanel之外導致面板刷新
- 20. 更改多個面板按鈕單擊wxpython
- 21. 單擊按鈕時出現錯誤android
- 22. 當我點擊某個按鈕時,Android App停止工作
- 23. 點擊右側面板li時左側面板上的jquery顯示值
- 24. Android Studio:單擊按鈕時逐個更新多個按鈕的背景
- 25. 單擊單選按鈕時
- 26. 按鈕上的顯示面板點擊
- 27. 改變面板的按鈕被點擊
- 28. 僅在單擊某個特定按鈕時調用Ajax
- 29. 單擊按鈕時如何執行某個功能?
- 30. Limit RequiredFieldValidator在單擊某個按鈕時進行驗證
http://stackoverflow.com/questions/10480049/how-to-make-a-sidebar-menu/10480723#10480723 – blessenm