「メニュー項目としてボタンを追加するにはどうすればよいですか?」で説明されているメニュー項目があります。. アイコンを使用すると、アイコンをクリックできます。しかし、を使用するactionLayout
と、クリックしても反応がありません。actionLayout
指し示すボタンは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/my_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_marginRight="15dp"
android:background="#999999"
android:text="Apple" />
</RelativeLayout>
この問題を解決する方法はありますか? アイデアは、ドローアブルの代わりに独自のビューを使用することです。