我将主要活动划分为两个片段,
上部分从xml加载Button,
&安培;我想在thr Lower部分加载PreferenceFragment
,
怎么做?
我尝试调用Settings.class,它使用我的下部分片段中的以下代码直接扩展PreferenceFragment
getFragmentManager().beginTransaction().replace(android.R.id.content,new Settings ()).commit();
调用PreferenceFragment但它重叠上部分
我正在努力实现这样的目标
答案 0 :(得分:1)
您可以在活动的布局文件中声明片段。
<?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.news.ArticleListFragment"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment android:name="com.example.news.ArticleReaderFragment"
android:id="@+id/viewer"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
</LinearLayout>