新しくリリースされた Android サポート デザイン ライブラリの NavigationView を使用すると、ナビゲーション ヘッダー レイアウトに (xml に) onClick が含まれている場合、onClick イベントによってアプリがクラッシュします。OnClick は (xml ではなく) プログラムで追加できview.onClickListener
、クリックすると正常に動作します。しかし、何らかの理由で、xml onClick が使用されるたびにエラーが発生します。
これが私の主なレイアウトです:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mainActivityLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<RelativeLayout
android:id="@+id/mainContentFrame"
android:layout_width="match_parent"
android:layout_height="match_parent">
...
</RelativeLayout>
<android.support.design.widget.NavigationView
android:id="@+id/drawerNavView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer_menu">
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
私のアクティビティでは、メニュー項目のクリック ( で追加navView.setNavigationItemSelectedListener()
) が正常に機能します。問題は、ヘッダーがクリックされたときです。
drawer_header.xml:
...
<View
android:id="@+id/testButton"
android:layout_width="match_parent"
android:layout_height="60dp"
android:onClick="testButtonClick"/>
...
次のエラーが発生します。
java.lang.IllegalStateException: Could not find a method testButtonClick(View)
in the activity class android.view.ContextThemeWrapper for onClick handler
on view class android.view.View with id 'testButton'
アップデート
NavigationView は標準のメニュー リソース ファイルを使用できますが、メニュー XML リソースから onClick を使用する場合も同様の問題があります。Menu Resource referenceによると、このandroid:onClick
属性は通常のコールバックをオーバーライドします。これは通常は正常に機能しますが、NavigationView のメニュー項目では機能しません。代わりに、次のエラーでクラッシュします。
java.lang.RuntimeException: Unable to start activity ComponentInfo{...}:
android.view.InflateException: Binary XML file line #34:
Error inflating class android.support.design.widget.NavigationView
XML onClick を削除すると、エラーはなくなります。
アップデート
Android Design Libraryの「公式」デモ プロジェクトを使用して、xml onClick をテストしました。同じ結果: onClick (xml) を NavigationView のメニューまたはヘッダーに追加すると、アプリがクラッシュします。したがって、これは NavigationView のバグのようです。
v23.1 で解決済み
Googleは、サポート ライブラリ v23.1 でこれらの XML onClick エラーの修正をリリースしました。