1 つのフラグメントが記事リストを表示し、もう 1 つのフラグメントが詳細な記事を表示する単純なフラグメントの例を作成しようとしています。これは私の主な活動クラスです-
public class ArticleFragment extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}// end class
これはメインのレイアウト ファイルです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="com.example.ArticleList"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment android:name="com.example.ArticleDetails"
android:id="@+id/viewer"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
</LinearLayout>
これは、ArticleList と ArticleDetails の 2 つのフラグメント クラスです。
public class ArticleList extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.articlelist, container, false);
}
public class ArticleDetails extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.articledetails, container, false);
}
}
articleList、ArticleDetails フラグメントの両方に 2 つの XML レイアウト ファイル (テキストビューを含む) もあります。しかし、アプリは機能しなくなりました。ここで何を見逃したのですか?Plsはありがとうございます。