こんにちは私はAndroid開発に不慣れです。
私はフラグメントを使用していますが、それがどのように機能するかを完全には理解していません。
アプリを起動するとクラッシュします。
私はたくさんググったが、大砲はこれを解決する:(
フラグメントを使用する必要があるActivity(MainActivity)があります。MainActivityは次のようになります。
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
また、main.xmlにはListViewとFragmentが含まれています。
<ListView
android:id="@+id/myListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<fragment class="com.todolist.NewItemFragment"
android:id="@+id/titles_fragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
私のフラグメントはListFragmentを拡張し、次のようになります。
public class NewItemFragment extends ListFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.new_item_fragment, container, false);
}
}
そして、new_item_fragment.xmlは次のようになります。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/myListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
なぜクラッシュするのかわかりません。私は何かを誤解したに違いありません。私はそこにいる誰かが助けてくれることを願っています-何をすべきかわからない:)
THX
ライブラリをインポートしました:
android.support.v4.app.FragmentActivity
そして、MainActivityクラスにFragmentActivityを拡張させました
次のエラーが発生します。