您好(并提前感谢),
我的应用程序具有类似Google Play商店的布局(使用带有5个子片段的PagerTabStrip)。在其中一些片段中,我需要显示有关上次更新数据的一些信息。
我立即考虑创建一个片段(LastUpdatedFragment),然后我将其添加(嵌套)到我需要的片段中。事情上,由于最后一次更新的日期对于每个屏幕都应该是相同的,所以事情正在发挥作用(我只是将片段添加到我需要的父片段的xml中,并且在onCreateView中我将日期放在TextView中),但是经过一些更改后,我现在需要为每个LastUpdatedFragment实例发送一个特定的日期。
我提出了一种方法 - 为我的片段创建新的自定义属性,然后我会设置我想要的日期。经过一些阅读后,我偶然发现了一种更简单的方式(Fragments within Fragments - 使用FragmentManager添加片段) - 我只需要父片段来处理输入参数并将其传递给子片段。
问题是,虽然我没有得到任何错误,但我也没有得到任何子片段,它只是不显示。如果你能引导我朝着正确的方向前进,我将不胜感激。
ScoreBoardFragment.java - >父片段
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
rootView = inflater.inflate(R.layout.fragment_scoreboard, container,
false);
for (int i = 0; i < tvCount; i++) {
tvName = "f_scoreboard_header_tv" + String.valueOf(i);
resID = getResources().getIdentifier(tvName, "id",
_activity.getPackageName());
header = (TextView) rootView.findViewById(resID);
header.setTypeface(MyGlobalConfig.getInstance().getHeadersFont());
}
FragmentManager childFragMan = getChildFragmentManager();
FragmentTransaction childFragTrans = childFragMan.beginTransaction();
LastUpdatedFragment fragB = new LastUpdatedFragment();
childFragTrans.add(R.id.FRAGMENT_PLACEHOLDER, fragB);
childFragTrans.addToBackStack("B");
childFragTrans.commit();
return rootView;
}
fragment_scoreboard.xml(已简化但显示其他所有内容)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/FRAGMENT_PLACEHOLDER"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
style="@style/ListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/f_scoreboard_header_tv0"
style="@style/ListViewRowHeader"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="#" />
</LinearLayout>
<ListView
android:id="@+id/f_scoreboard_lvbody"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true" >
</ListView>
</LinearLayout>
LastUpdatedFragment.java - &gt;儿童片段
public class LastUpdatedFragment extends Fragment{
private View rootView;
private TextView tv;
private Context ctx;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler(
getActivity()));
this.ctx = getActivity().getApplicationContext();
}
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
rootView = inflater.inflate(R.layout.fragment_date, container,
false);
tv = (TextView) rootView.findViewById(R.id.f_date_tv);
tv.setTypeface(MyGlobalConfig.getInstance().getBodyFont());
tv.setText(getString(R.string.lastupdated) + ": " + Util.getLastUpdated(ctx));
return rootView;
}
}
fragment_date.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/f_date_tv"
style="@style/LastUpdatedTV"
android:layout_width="match_parent"
android:text="Data de última actualização: 27/12/2014 21:30" />
</LinearLayout>
答案 0 :(得分:4)
尝试使用FrameLayout而不是LinearLayout作为占位符。