我在一个名为 profile_sliding_menu.xml 的 .xml 文件中定义了一个布局视图:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusableInTouchMode="true"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#b5b5b5" />
<TextView
android:id="@+id/pMenuProfileInformation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_profile_information"
android:drawablePadding="5dp"
android:gravity="center"
android:paddingLeft="5dp"
android:paddingTop="3dp"
android:clickable="true"
android:text="@string/pMenuProfileInformation"
android:textAppearance="?android:attr/textAppearanceMedium" />
..........
</LinearLayout>
我正在从代码创建 SlidingMenu:
SlidingMenu menu;
menu = new SlidingMenu(this);
menu.setMode(SlidingMenu.LEFT);
menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
menu.setShadowWidthRes(R.dimen.shadow_width);
menu.setShadowDrawable(R.drawable.shadow);
menu.setBehindOffsetRes(R.dimen.slidingmenu_offset);
menu.setFadeDegree(0.35f);
menu.attachToActivity(this, SlidingMenu.SLIDING_CONTENT);
menu.setMenu(R.layout.profile_sliding_menu);
它完美地显示了菜单,但是当用户从菜单中选择一个选项时,我想做一些操作。我如何访问这些按钮并为它们分配一个事件?
谢谢!