我有一个ActionBarActivity
包含HorizontalScrollView
在每个下显示选项卡和片段的内容。
目前每个选项卡下加载的片段是PreferenceFragment
,但我希望它是卡片(作为 a 的一部分,cardView
并且这张卡片包含我的。PreferenceFragment
我
知道可以将一个容器?PreferenceFragment
Activity
Fragment
问问题
1899 次
3 回答
0
解决方案是ListView
在卡片视图中实现。
这是卡片布局:
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="8dp"
card_view:cardBackgroundColor="@android:color/white"
card_view:cardCornerRadius="8dp">
<ListView
android:id="@android:id/list"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical" />
</android.support.v7.widget.CardView>
请注意ListView
包含的内容@android:id/list
,这是preferenceFragment
充气所需的内容。
于 2014-12-21T07:54:15.997 回答
0
您为片段膨胀的布局可以包装在卡片视图中。
分段
public View onCreateView(...) {
// Inflate the layout for this fragment
View rootView = inflater.inflate(R.layout.news_card_row, container, false);
return rootView;
}
xml
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/fssr_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</android.support.v7.widget.CardView>
于 2014-11-26T19:42:36.023 回答
-2
我发现最好的方法是使用带有 AppCompat 的嵌套片段getChildFragmentManager()
。
我的代码适用于我用卡片制作的滑动视图,我认为对你有用:
PrefsFragment.java:
public class PrefsFragment extends PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.settings);
}
PrefsContainerFragment.java:
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class PrefsContainerFragment extends Fragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Fragment prefsFragment = new PrefsFragment();
FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
transaction.add(R.id.child_fragment, prefsFragment).commit();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_pref, container,false);
}
}
片段首选项 XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
card_view:cardCornerRadius="4dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
card_view:cardBackgroundColor="@color/cardview_light_background"
android:layout_margin="@dimen/card_padding"
tools:context=".PrefFragment"
android:clickable="false">
<FrameLayout
android:id="@+id/child_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v7.widget.CardView>
FragmentTransaction
方法中的in可能存在问题onCreate
,但据我所知,它之所以有效,是因为您addPreferencesFromResource(R.xml.settings);
也在onCreate
子 Fragment 中使用了。但是,如果它不适合您,请尝试将其放入onCreateView
or中onActivityCreated
。
于 2014-12-20T20:22:31.063 回答