我有一个ActionBarActivity
,其中包含HorizontalScrollView
,以显示每个标签和片段
目前,每个标签下的加载片段为PreferenceFragment
,但我希望它是卡片(作为cardView
的一部分,此卡片包含我的PreferenceFragment
。
我知道可以将PreferenceFragment
放在Activity
视图中的容器中,但是可以将它放在Fragment
的容器中吗?
答案 0 :(得分:0)
您为片段充气的布局可以包装在cardview中。
片段
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>
答案 1 :(得分: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
,这是{{1}}所需要的,以便充气。
答案 2 :(得分:-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);
}
}
fragment_pref 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
方法中的onCreate
可能存在问题,但就我所知,它可行,因为您在addPreferencesFromResource(R.xml.settings);
中使用了onCreate
孩子片段也是。但是,如果它不适合您,请尝试将其放入onCreateView
或onActivityCreated
。