0

menu_list_slide_lateral.xml という .xml ファイルでレイアウト ビューを定義しました。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linear_menu_slide"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/btnSliBebe"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/bebe" />

    <Button
        android:id="@+id/button2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/foto_diario" />

    <Button
        android:id="@+id/button3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/consejos" />

    <Button
        android:id="@+id/button4"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/ajustes" />

</LinearLayout>

コードから SlidingMenu を作成しています:

setBehindContentView(R.layout.menu_list_slide_lateral);
setSlidingActionBarEnabled(true);       
slideMenu = getSlidingMenu();
slideMenu.setMode(SlidingMenu.LEFT);
slideMenu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
slideMenu.setShadowWidthRes(R.dimen.shadow_width);
slideMenu.setBehindOffset(100);
slideMenu.setFadeDegree(0.35f);

mi アクティビティは SlidingFragmentActivity から拡張されます。

public class TimelineActivity extends SlidingFragmentActivity

メニューは完全に表示されますが、ユーザーがメニューからオプションを選択したときにいくつかのアクションを実行したい:

スライド メニュー オプション

たとえば、「Bebe」オプションを選択したときに別のアクティビティを開きたいとします。そのボタンに onClick イベントを設定しようとしましたが、機能していないようで、何もしません:

inflater = getLayoutInflater();
item = inflater.inflate(R.layout.menu_list_slide_lateral, null);


btnSliBebe = (Button) item.findViewById(R.id.btnSliBebe);
btnSliBebe.setOnClickListener(new OnClickListener(){
    @Override
    public void onClick(View arg0) {

        Log.e(TAG, "boton bebe");

    }   
});

そのボタンにアクセスしてイベントを割り当てるにはどうすればよいですか?

ありがとう!

4

1 に答える 1