所以我已经完成了我的应用程序并进行了最终测试。在Android 5.0+上它运行正常,但在Lollipop之前的设备上我会遇到奇怪的错误。
首先,在ScrollView
的活动中看不到操作栏,我通过将ScrollView
放在RelativeLayout
内来修复它。但这只能解决问题的一半。 Action bar
颜色是透明的,我可以告诉您,因为我的活动中的背景颜色为#f2f2f2
,Action bar
上的文字为白色。
我看到操作栏标题,后退按钮以及我放入操作栏的所有图像,但是无法将其颜色设置为ColorPrimary
,这是浅蓝色。
这是ACTIVITY代码(不是内容)
<?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="hr.app.liftme.liftmehr.VjezbeTricepsTricepsEkstenzijaKablovima">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
android:elevation="10dp"
app:elevation="10dp">
<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/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_vjezbe_triceps_triceps_ekstenzija_kablovima" />
</android.support.design.widget.CoordinatorLayout>
这是我声明的java文件
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_vjezbe_triceps_triceps_ekstenzija_kablovima);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
有人可以帮我解决这个问题吗?
答案 0 :(得分:1)
/ **在您的xml,颜色/背景中,根据您的要求** /
进行更改<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="55dp"
android:padding="@dimen/appbar_padding"
android:background="@color/appbarColor">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/place_order"
android:layout_gravity="center"
android:textSize="@dimen/appbar_txt_size"
android:textStyle="bold"
android:textColor="@color/white"
android:layout_marginTop="15dp"
android:id="@+id/toolbar_title"/>
</android.support.v7.widget.Toolbar>
/ **在你的java文件中** /
toolbar.setBackgroundColor(Color.parseColor("#617191"));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getActivity().getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
window.setStatusBarColor(getActivity().getResources().getColor(R.color.toolbar));
}