我有一个活动,activity.xml中的代码如下所示..
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/normal_margin"
android:layout_marginRight="@dimen/normal_margin"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:layout_marginTop="@dimen/big_margin"
android:layout_marginBottom="@dimen/big_margin"
>
<ImageView
android:layout_width="@dimen/small_big_height"
android:layout_height="@dimen/small_big_height"
android:layout_alignTop="@+id/act_standing_area_add_transporter"
android:layout_alignBottom="@+id/act_standing_area_add_transporter"
android:layout_centerVertical="true"
android:src="@mipmap/search" />
<AutoCompleteTextView
android:id="@+id/actv_location_select_city"
android:layout_width="match_parent"
android:hint="@string/search_location"
android:imeOptions="actionSearch"
android:lines="1"
android:paddingLeft="@dimen/large_margin"
android:singleLine="true"
android:textSize="@dimen/normal_big_text"
android:completionThreshold="1"
android:layout_height="wrap_content"
/>
</RelativeLayout>
<FrameLayout
android:id="@+id/frame_container_select_city"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
现在问题是..在创建我的活动时,我在Frame布局中添加了MyFragment1。 MyFragment1包含recyclerView。在recyclerView中选择项目时,我添加了MyFragment2。现在回来按我想要显示MyFragment1 ..请给出你的建议。
答案 0 :(得分:0)
当你要求提出建议时,我可以给你一个。我在一些应用程序中实现了这种流程。
在您的活动中,请先使用boolean
标记isReturnedFromDetailFragment
并将其设置为true
。
private boolean isReturnedFromDetailFragment = true;
更换MyFragment2
时,请将boolean
值设为false
。
现在在onBackPressed
的{{1}}函数中,检查Activity
是否为isReturnedFromDetailFragment
。如果没有,请替换true
中的MyFragment1
,然后将FrameLayout
值再次设置为boolean
。