我是Android Studio的新手,在设置我的工具栏和活动时,它给我带来了很多问题,问题是每当我将布局宽度和高度更改为以下
layout_width = match_parent
的 layout_height =属性/ actionBarsize
它又回到了以下
layout_width = 368dp
的 layout_height = 56dp
无论多少次尝试改变它都会一次又一次地给我相同的结果。
答案 0 :(得分:1)
ConstraintLayout不支持match_parent,并且它希望每个视图都受到约束。当您单击Android Studio的设计模式时,编辑器将启动并尝试“修复”您的xml的任何问题。在这种情况下,它发现您的工具栏没有约束,并且错误地使用match_parent,因此尝试为您修复此问题(您应该看到工具栏未受约束的警告)。
我认为你有两个选择:
1约束布局中的工具栏,并将'match_parent'替换为'0dp'
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="0dp"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:layout_marginLeft="0dp"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginRight="0dp"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="0dp" />
2将工具栏放在协调器布局中。您以前必须使用工具栏滚动功能,但是使用新的ConstraintLayout我不确定这是否仍然适用
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CoordinatorLayout>
答案 1 :(得分:0)
XML:
<RelativeLayout 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">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
android:id="@+id/coach_bar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#F4B702"
app:popupTheme="@style/AppTheme.PopupOverlay" >
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<!--<Your Design>-->
</RelativeLayout >
爪哇
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.setLogo(R.drawable.my_icon);
setSupportActionBar(toolbar);
if(getSupportActionBar()!=null)
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
的Manifest.xml
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"/>
答案 2 :(得分:0)
我遇到了这个问题,最后我发现在更改后我没有保存 style.xml 。