子フラグメントのツールバーの矢印をバック表示する方法を、このようなメインアクティビティのレイアウト:私は次のフラグメントにページを変更したときは、私が主な活動は、フラグメントがたくさん含まれてい
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.user.taiwandigestionsociety_v11.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF">
//----------------------here is my toolbar------------------------
<include layout="@layout/toolbar"/>
<FrameLayout
android:id="@+id/mainFrame"
android:layout_gravity="end"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/transparent"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header">
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
は、私は、フラグメントがあることを望みますツールバーの戻る矢印をクリックすると、前のアクティビティ、おそらくはフラグメントを返すことができます。
私が主な活動で機能を設定しよう:
public void setBackArrow() {
toolbar.setNavigationIcon(R.drawable.nav_icon_arrow_18x18_white);
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
switchFragment(NewsInformation.newInstance());
}
});
}
私のスイッチ機能:
private void switchFragment(Fragment fragment) {
FragmentManager manager = getActivity().getSupportFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction.replace(R.id.mainFrame, fragment, null);
//transaction.addToBackStack(null);
transaction.commit();
}
と私はこのような次のフラグメントにそれを呼び出す:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view =inflater.inflate(R.layout.activity_list_fragment,container, false);
//try to let the fragment has a back arrow toolbar , and has the onClick to previous layout
((MainActivity) getActivity()).setBackArrow();
return view;
}
私は次の断片に切り替えて最初にそれをクリックすることができます。
しかし、以前のレイアウトに戻って、ツールバーのメニュー機能を元に戻し、void setBackArrow()を置き換え、ナビゲーションアイコンが常にR.drawable.nav_icon_arrow_18x18_whiteになってしまった。
私の子供のフラグメントに戻る矢印が付いていて、以前のレイアウトに変更する最も良い方法はありますか?
感謝の男が、私の問題はDrawerLayoutに関するものではありません。 –