工具栏不会在 Android Studio 中显示为操作栏
Toolbar won't display as action bar in Android Studio
我目前正在尝试在我的应用程序中实施 NavigationDrawer
,并且一直在遵循 Android 开发人员指南以了解如何实施。
但是,当尝试将自定义 Toolbar
设置为 ActionBar
时,Toolbar
不会在应用程序中显示,几乎与 setSupprtActionBar()
方法一样什么都不做。
我认为将主题设置为 .NoActionBar
某处不正确是个问题,但我尝试更改它们但没有成功。
编辑: 根据 ʍьђઽ૯ท 的建议,这里是更新后的代码,但仍然没有显示工具栏。
这是我的 MainActivity.java
:
public class MainActivity extends AppCompatActivity {
private DrawerLayout mDrawerLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Sets custom toolbar as default toolbar and imports menu icon
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
// Creates navigation drawer
mDrawerLayout = findViewById(R.id.drawer_layout);
NavigationView navigationView = findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(
new NavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(MenuItem menuItem) {
// set item as selected to persist highlight
menuItem.setChecked(true);
// close drawer when item is tapped
mDrawerLayout.closeDrawers();
// Add code here to update the UI based on the item selected
// For example, swap UI fragments here
return true;
}
});
}
这是我的 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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
android:elevation="4dp" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBackground">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="12dp">
<android.support.v7.widget.CardView
android:id="@+id/weather_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/weather_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="6dp"
android:layout_marginEnd="10dp"
android:src="@drawable/icon_weather" />
<TextView
android:id="@+id/weather_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/weather_mode_icon"
android:paddingBottom="5dp"
android:text="@string/weather_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/weather_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/weather_mode_title"
android:layout_toEndOf="@+id/weather_mode_icon"
android:layout_toStartOf="@id/weather_mode_button"
android:text="@string/weather_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/weather_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="@string/mode_button"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/wifi_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/wifi_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:src="@drawable/icon_wifi" />
<TextView
android:id="@+id/wifi_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:paddingBottom="5dp"
android:text="@string/wifi_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/wifi_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/wifi_mode_title"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:layout_toStartOf="@id/wifi_mode_button"
android:text="@string/wifi_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/wifi_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="@string/mode_button"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/temp_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/temp_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:src="@drawable/icon_temp" />
<TextView
android:id="@+id/temp_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/temp_mode_icon"
android:paddingBottom="5dp"
android:text="@string/temp_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/temp_mode_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/temp_mode_title"
android:layout_toEndOf="@+id/temp_mode_icon"
android:layout_toStartOf="@id/temp_mode_button"
android:text="@string/temp_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/temp_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="@string/mode_button"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</ScrollView>
<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:menu="@menu/drawer_view"
app:headerLayout="@layout/nav_header" />
</android.support.v4.widget.DrawerLayout>
这是我的 styles.xml
:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:colorForeground">@color/foreground_material_light</item>
</style>
<style name="AppTheme.NoActionBar" parent="AppTheme">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
</resources>
这是我的 AndroidManifest.xml
:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
尝试将您的工具栏放在 xml 的 appbarlayout 中并检查 .
像这样:
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
</android.support.design.widget.AppBarLayout>
我认为这是 Toolbar
下的 FrameLayout
的原因,实际上是整个布局设计。我已经在布局代码的注释块中评论了有关设计的重要事项。
在你的styles.xml
中:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
...
</style>
在你的AndroidManifest.xml
中:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true">
<activity
android:name=".MainActivity"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
在您的布局中:
<?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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:title="MyToolbar" />
</android.support.design.widget.AppBarLayout>
<!--<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />--> <!-- This shouldn't be here maybe under the NestedScrollView -->
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/red"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<!-- Here your content -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="12dp">
<android.support.v7.widget.CardView
android:id="@+id/weather_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/weather_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:layout_marginTop="6dp" />
<TextView
android:id="@+id/weather_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/weather_mode_icon"
android:paddingBottom="5dp"
android:text="weather_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/weather_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/weather_mode_title"
android:layout_toEndOf="@+id/weather_mode_icon"
android:layout_toStartOf="@id/weather_mode_button"
android:text="weather_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/weather_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="mode_button" />
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/wifi_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/wifi_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:layout_marginTop="6dp" />
<TextView
android:id="@+id/wifi_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:paddingBottom="5dp"
android:text="wifi_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/wifi_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/wifi_mode_title"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:layout_toStartOf="@id/wifi_mode_button"
android:text="wifi_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/wifi_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="mode_button" />
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/temp_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/temp_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:layout_marginTop="6dp" />
<TextView
android:id="@+id/temp_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/temp_mode_icon"
android:paddingBottom="5dp"
android:text="temp_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/temp_mode_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/temp_mode_title"
android:layout_toEndOf="@+id/temp_mode_icon"
android:layout_toStartOf="@id/temp_mode_button"
android:text="temp_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/temp_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="mode_button" />
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
<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/header"
app:menu="@menu/drawer" />
</android.support.v4.widget.DrawerLayout>
我目前正在尝试在我的应用程序中实施 NavigationDrawer
,并且一直在遵循 Android 开发人员指南以了解如何实施。
但是,当尝试将自定义 Toolbar
设置为 ActionBar
时,Toolbar
不会在应用程序中显示,几乎与 setSupprtActionBar()
方法一样什么都不做。
我认为将主题设置为 .NoActionBar
某处不正确是个问题,但我尝试更改它们但没有成功。
编辑: 根据 ʍьђઽ૯ท 的建议,这里是更新后的代码,但仍然没有显示工具栏。
这是我的 MainActivity.java
:
public class MainActivity extends AppCompatActivity {
private DrawerLayout mDrawerLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Sets custom toolbar as default toolbar and imports menu icon
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
// Creates navigation drawer
mDrawerLayout = findViewById(R.id.drawer_layout);
NavigationView navigationView = findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(
new NavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(MenuItem menuItem) {
// set item as selected to persist highlight
menuItem.setChecked(true);
// close drawer when item is tapped
mDrawerLayout.closeDrawers();
// Add code here to update the UI based on the item selected
// For example, swap UI fragments here
return true;
}
});
}
这是我的 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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
android:elevation="4dp" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBackground">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="12dp">
<android.support.v7.widget.CardView
android:id="@+id/weather_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/weather_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="6dp"
android:layout_marginEnd="10dp"
android:src="@drawable/icon_weather" />
<TextView
android:id="@+id/weather_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/weather_mode_icon"
android:paddingBottom="5dp"
android:text="@string/weather_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/weather_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/weather_mode_title"
android:layout_toEndOf="@+id/weather_mode_icon"
android:layout_toStartOf="@id/weather_mode_button"
android:text="@string/weather_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/weather_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="@string/mode_button"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/wifi_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/wifi_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:src="@drawable/icon_wifi" />
<TextView
android:id="@+id/wifi_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:paddingBottom="5dp"
android:text="@string/wifi_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/wifi_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/wifi_mode_title"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:layout_toStartOf="@id/wifi_mode_button"
android:text="@string/wifi_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/wifi_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="@string/mode_button"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/temp_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/temp_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:src="@drawable/icon_temp" />
<TextView
android:id="@+id/temp_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/temp_mode_icon"
android:paddingBottom="5dp"
android:text="@string/temp_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/temp_mode_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/temp_mode_title"
android:layout_toEndOf="@+id/temp_mode_icon"
android:layout_toStartOf="@id/temp_mode_button"
android:text="@string/temp_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/temp_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="@string/mode_button"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</ScrollView>
<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:menu="@menu/drawer_view"
app:headerLayout="@layout/nav_header" />
</android.support.v4.widget.DrawerLayout>
这是我的 styles.xml
:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:colorForeground">@color/foreground_material_light</item>
</style>
<style name="AppTheme.NoActionBar" parent="AppTheme">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
</resources>
这是我的 AndroidManifest.xml
:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
尝试将您的工具栏放在 xml 的 appbarlayout 中并检查 . 像这样:
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
</android.support.design.widget.AppBarLayout>
我认为这是 Toolbar
下的 FrameLayout
的原因,实际上是整个布局设计。我已经在布局代码的注释块中评论了有关设计的重要事项。
在你的styles.xml
中:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
...
</style>
在你的AndroidManifest.xml
中:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true">
<activity
android:name=".MainActivity"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
在您的布局中:
<?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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:title="MyToolbar" />
</android.support.design.widget.AppBarLayout>
<!--<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />--> <!-- This shouldn't be here maybe under the NestedScrollView -->
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/red"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<!-- Here your content -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="12dp">
<android.support.v7.widget.CardView
android:id="@+id/weather_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/weather_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:layout_marginTop="6dp" />
<TextView
android:id="@+id/weather_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/weather_mode_icon"
android:paddingBottom="5dp"
android:text="weather_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/weather_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/weather_mode_title"
android:layout_toEndOf="@+id/weather_mode_icon"
android:layout_toStartOf="@id/weather_mode_button"
android:text="weather_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/weather_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="mode_button" />
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/wifi_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/wifi_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:layout_marginTop="6dp" />
<TextView
android:id="@+id/wifi_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:paddingBottom="5dp"
android:text="wifi_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/wifi_mode_desc"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_below="@+id/wifi_mode_title"
android:layout_toEndOf="@+id/wifi_mode_icon"
android:layout_toStartOf="@id/wifi_mode_button"
android:text="wifi_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/wifi_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="mode_button" />
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/temp_mode_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:elevation="4dp"
android:padding="10dp">
<ImageView
android:id="@+id/temp_mode_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginEnd="10dp"
android:layout_marginTop="6dp" />
<TextView
android:id="@+id/temp_mode_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/temp_mode_icon"
android:paddingBottom="5dp"
android:text="temp_mode"
android:textSize="20sp" />
<TextView
android:id="@+id/temp_mode_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/temp_mode_title"
android:layout_toEndOf="@+id/temp_mode_icon"
android:layout_toStartOf="@id/temp_mode_button"
android:text="temp_mode_desc"
android:textColor="#8b8b8b"
android:textSize="14sp" />
<Button
android:id="@+id/temp_mode_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="mode_button" />
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
<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/header"
app:menu="@menu/drawer" />
</android.support.v4.widget.DrawerLayout>