我是Android开发的新手,我正在尝试找到正确的解决方法,但是在我的activity_main.xml
我自定义创建的工具栏app_bar_parallax_fab
中包含了托管导航栏的activity_main的xml。
所以我最初的想法是我必须找到一种方法来改变包含的xml。我已经研究了几个小时如何更改包含文件,然后我找到了ViewFlipper,但后来深入研究并阅读使用viewflipper的正确方法是使用相同的活动。
我只是需要一些帮助,我应该如何说明一个新的活动可能会抛出一些类似于我想要完成的事情的例子。或者告诉我,我的思考/解释是完全错误的!
以下是activity_main.xml的片段,这几乎是默认的:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include android:id="@+id/mainContent" layout="@layout/app_bar_parallax_fab" />
<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:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|start"
android:layout_marginBottom="8dp"
android:layout_marginStart="15dp"
android:text="@string/project_owner"
android:textColor="@android:color/darker_gray" />
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
然后我有一个名为account_app_bar.xml
的应用栏,其中whitin包含account_content.xml
,因为我的自定义应用/工具栏会根据正在发生的活动/布局而更改。
以下是自定义工具栏的XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="io.tarson.cryptovision.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_account_toolbar"
android:layout_width="match_parent"
android:layout_height="256dp"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:statusBarScrim="@android:color/transparent"
app:contentScrim="?attr/colorPrimary">
<ImageView
android:id="@+id/account_profile_banner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
android:src="@drawable/cafelights"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.4"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:layout_collapseMode="pin">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<include
android:id="@+id/appBarParallaxInclude"
layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:fabSize="normal"
app:layout_anchor="@id/collapsing_account_toolbar"
app:srcCompat="@drawable/ic_fab_edit"
app:layout_anchorGravity="bottom|right|end"/>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
正如您在评论中提到的,您的主要目标是在打开物品时保持抽屉可用。为此目的,活动不合适。相反,您需要使用相同的活动并使用Fragments进行操作。
以下是如何实施的简短示例:
enum MenuItems {
HOME,
SETTINGS,
FAQ,
}
private void openMenuItem(MenuItems selectedItem) {
Fragment instance;
switch (selectedItem) {
case HOME:
instance = HomeFragment.instantiate();
break;
case SETTINGS:
instance = HomeFragment.instantiate();
break;
case FAQ:
instance = HomeFragment.instantiate();
break;
default:
throw new IllegalArgumentException();
}
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.fragment_container, instance);
transaction.addToBackStack(null);
transaction.commit();
}
fragment_container应该是ViewGroup
类型视图(最好是FrameLayout
),它保存片段的位置(通常占用活动内的整个空间)。在简化的情况下,带抽屉的整个布局可能看起来像这样:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<android.support.design.widget.NavigationView
android:id="@+id/fragment_container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer">
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
有关详细信息,请参阅以下文档: https://developer.android.com/training/basics/fragments/fragment-ui.html