別のxmlにナビゲーションバーコードxmlを含めると、次のエラーが生成されます。
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.my/com.my.Login}: android.view.InflateException: Binary XML file line #1: Error inflating class <unknown>
login.xmlは
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/tableStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include
android:layout_height="wrap_content"
layout="@layout/navbar" />
</LinearLayout>
navbar.xmlは
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@style/tableRowStyle"
android:orientation="horizontal"
android:paddingRight="0dp" >
<Button
android:id="@+id/button2"
android:layout_width="52dp"
android:layout_height="48dp"
android:background="@drawable/home" />
<View
android:layout_width="1px"
android:layout_height="fill_parent"
android:background="#1f1f1f" />
<View
android:layout_width="1px"
android:layout_height="fill_parent"
android:background="#454545" />
<Button
android:id="@+id/button1"
android:layout_width="190dp"
android:layout_height="48dp"
android:layout_weight="0.35"
android:background="@drawable/stock" />
<View
android:layout_width="1px"
android:layout_height="fill_parent"
android:background="#1f1f1f" />
<View
android:layout_width="1px"
android:layout_height="fill_parent"
android:background="#454545" />
<Button
android:id="@+id/button2"
android:layout_width="52dp"
android:layout_height="48dp"
android:background="@drawable/home" />
</LinearLayout>
その背後にある問題は何ですか?