所以我有一个应用程序,它使用一些按钮来进行不同的活动。在它们下面,我有图像按钮,我想使用其中2个打开2个不同的滑动菜单。我已经阅读了所有关于here的滑动菜单,但它只显示了使用滑动菜单的某种方式。
因此活动的代码是:
public class ChooseCategory extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_choose_category);
}
我的xml代码是:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#BE2625"
android:orientation="vertical">
<Button
android:id="@+id/fancy"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/fancy"
android:textColor="#FFFFFF"
android:background="@drawable/button4"
/>
<Button
android:id="@+id/chipchop"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/chipchop"
android:textColor="#FFFFFF"
android:background="@drawable/button4"
/>
<Button
android:id="@+id/pizza"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/pizza"
android:textColor="#FFFFFF"
android:background="@drawable/button4"
/>
<Button
android:id="@+id/asian"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/asian"
android:textColor="#FFFFFF"
android:background="@drawable/button4"
/>
<Button
android:id="@+id/indian"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/indian"
android:textColor="#FFFFFF"
android:background="@drawable/button4"
/>
<Button
android:id="@+id/kebab"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/kebab"
android:textColor="#FFFFFF"
android:background="@drawable/button4"
/>
<Button
android:id="@+id/other"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/other"
android:textColor="#FFFFFF"
android:background="@drawable/button4"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_menu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:gravity="bottom"
android:background="#BE2620" >
<!-- contentDescription tags added to remove related warnings -->
<ImageButton
android:id="@+id/btn_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@null"
android:src="@drawable/ic_launcher"
/>
<ImageButton
android:id="@+id/btn_book"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@null"
android:src="@drawable/ic_launcher"
/>
<ImageButton
android:id="@+id/btn_find_us"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@null"
android:src="@drawable/ic_launcher"
/>
<ImageButton
android:id="@+id/btn_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@null"
android:src="@drawable/ic_launcher"
/>
</LinearLayout>
</LinearLayout>
<!-- Listview to display slider menu -->
<ListView
android:id="@+id/list_slidermenu"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:dividerHeight="1dp"
android:background="#FFFFFF"/>
</RelativeLayouts>
有关如何使用该代码或其他代码以点击ImageButton并打开滑动菜单的任何帮助吗?
答案 0 :(得分:0)
我是为我的项目做的。
致电
getSlidingMenu().toggle(); //to open left side menu
并致电
getSlidingMenu().showSecondaryMenu(); //to open right side menu
此外,如果您想在点击SherlockActionBar
中的图标后打开菜单在BaseActivity中修改onOptionsItemSelected
方法,如下所示
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
toggle();
return true;
case R.id.github:
//Util.goToGitHub(this);
showSecondaryMenu();
return true;
}
return super.onOptionsItemSelected(item);
}
<强>更新强>
将BaseActivity
扩展到您的班级
public class ChooseCategory extends BaseActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_choose_category);
ImageButton button1 = (ImageButton) findViewById(R.id.button1);
button1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
getSlidingMenu().toggle(); // to open left side menu
}
}
ImageButton button2 = (ImageButton) findViewById(R.id.button2);
button2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
getSlidingMenu().showSecondaryMenu(); // to open right side menu
}
}
});
}