如何在另一个布局的顶部设置透明布局

时间:2014-10-15 08:15:12

标签: android android-layout transparent

我有布局,并希望在这个空白区域透明。我使用的是slipupmenu库,这是我的示例布局:

example

并且在这个空白处不要创建透明色,这是我的xml代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#40ffffff" >

<RelativeLayout
    android:id="@+id/header_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/transparent"
    android:orientation="vertical" >

    <View
        android:id="@+id/space"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_alignBottom="@+id/button_center"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:background="@color/abs__background_holo_light"
        android:minHeight="@dimen/map_height" />

    <RelativeLayout
        android:id="@+id/relativeLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentBottom="true"
        android:padding="10dp"
        android:layout_below="@+id/space"
        android:background="@color/abs__background_holo_light" >

        <TextView
            android:id="@+id/alamat_wisata"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="28dp"
            android:text="Jl. Imam Bonjol"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="@color/content_text" />

        <TextView
            android:id="@+id/jarak"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/alamat_wisata"
            android:layout_toRightOf="@+id/imageView1"
            android:padding="2dp"
            android:text="25 Km"
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignTop="@+id/jarak"
            android:layout_marginLeft="20dp"
            android:padding="1dp"
            android:src="@drawable/ic_jarak" />

    </RelativeLayout>

    <TextView
        android:id="@+id/title_place"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/relativeLayout1"
        android:layout_centerHorizontal="true"
        android:maxLines="2"
        android:text="Taman Krida Budaya"
        android:textColor="@color/action_bar"
        android:textSize="25sp"
        android:textStyle="bold" />

    <at.markushi.ui.CircleButton
        android:id="@+id/button_center"
        android:layout_width="95dp"
        android:layout_height="95dp"
        android:layout_centerHorizontal="true"
        android:padding="5dp"
        android:scaleType="centerInside"
        android:src="@drawable/ic_1"
        app:cb_color="@color/abs__background_holo_light"
        app:cb_pressed_ring_width="8dip" />

    <at.markushi.ui.CircleButton
        android:id="@+id/button_right"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_alignBottom="@+id/space"
        android:layout_alignParentRight="true"
        android:layout_marginRight="40dp"
        android:layout_marginBottom="15dp"
        android:src="@drawable/ic_nearby"
        app:cb_color="@color/abs__background_holo_light"
        app:cb_pressed_ring_width="8dip" />

    <at.markushi.ui.CircleButton
        android:id="@+id/button_left"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_alignBottom="@+id/space"
        android:layout_marginLeft="40dp"
        android:layout_marginBottom="15dp"
        android:src="@drawable/ic_rute"
        app:cb_color="@color/abs__background_holo_light"
        app:cb_pressed_ring_width="8dip" />

</RelativeLayout>

白色空间中的

应该是透明的并显示地图。

2 个答案:

答案 0 :(得分:0)

在所有组件中使用@android:颜色/透明

答案 1 :(得分:0)

在您的颜色代码之前添加它。

100% - FF 95% - F2 90% - E6 85% - D9 80% - CC 75% - 高炉 70% - B3 65% - A6 60% - 99 55% - 8C 50% - 80 45% - 73 40% - 66 35% - 59 30% - 4D 25% - 40 20% - 33 15% - 26 10% - 1A 5% - 0D 0% - 00