src > myproject.test > HomeView にカスタム ビューがあります。
私のメインレイアウトxmlには、次のものがあります。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/home_root"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<myproject.test.HomeView
android:id="@+id/home_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</myproject.test.HomeView>
</LinearLayout>
HomeActivity では、onCreate メソッドでこのような呼び出しを行います。
setContentView(R.layout.main);
HomeView mHomeView = (HomeView) this.findViewById(R.id.home_view);
setContentView メソッドが呼び出されると、アプリは強制的に閉じられます。メインの xml が正しくないようです。
何か案は?