如何设置ActionBar for transaparent并将其保留在ImageView上

时间:2015-06-18 13:25:33

标签: android android-actionbar

我想让ActionBar透明,它就像这张图片一样在图像上方。 怎么设置它?

enter image description here

2 个答案:

答案 0 :(得分:2)

布局

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <android.support.v7.widget.Toolbar 
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/background_white"
    android:minHeight="?attr/actionBarSize" />

    <FrameLayout
        android:id="@+id/framelayout_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</FrameLayout>

解决方案1#

//whole toolbar will be transparent 
mToolbar.setAlpha(0.0f);

解决方案2#

//only background of toolbar will be transparent 
mToolbar.getBackground().setAlpha(0);

答案 1 :(得分:2)

@ maros136:

我认为您应该在framelayout_content下添加工具栏布局,并且根布局应该是RelativeLayout,以便工具栏始终位于顶部。

像这样:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/main_details_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        Your layout here
    </LinearLayout>

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/transparent"
        />

</RelativeLayout>

结果:

enter image description here

https://play.google.com/store/apps/details?id=com.levionsoftware.photos