我想做的是使透明的操作栏覆盖片段,但操作栏不能覆盖片段。它们是分开放置的。
我提出的动作条透明的MainActivity.java
。
我设置了FEATURE_ACTION_BAR_OVERLAY
,但老实说我还是不明白它的作用。
getWindow().requestFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
// set actionbar with custom layout
ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayShowHomeEnabled(false);
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#330000ff")));
actionBar.setStackedBackgroundDrawable(new ColorDrawable(Color.parseColor("#550000ff")));
和xml
<android.support.constraint.ConstraintLayout 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"
tools:context=".activity.MainActivity">
<fragment
android:id="@+id/street_view"
android:name="com.google.android.gms.maps.StreetViewPanoramaFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
/>
</android.support.constraint.ConstraintLayout>
我该怎么办?