搜尋

首頁  >  問答  >  主體

android - 怎麼把圖片設定在兩個佈局的邊緣上

#如圖怎麼設定這樣的效果,圖片在兩個佈局邊緣上這個activity下面有一個正在播放影片的activity,我用幀佈局已設定透明就全透明了。

淡淡烟草味淡淡烟草味2743 天前867

全部回覆(2)我來回復

  • 習慣沉默

    習慣沉默2017-05-16 13:36:07

    不知道是不是這個效果

    代碼:

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/holo_green_dark"
        android:clipChildren="false">
    
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_alignParentBottom="true"
            android:background="@android:color/darker_gray">
            <View
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"/>
            <ImageView
                android:layout_width="100dp"
                android:layout_height="100dp"
                android:layout_gravity="bottom"
                android:src="@mipmap/ic_launcher"/>
            <View
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"/>
        </LinearLayout>
    </RelativeLayout>

    關鍵在這句代碼:

    android:clipChildren="false"

    解釋:

    是否限制子View在其範圍內 預設為true

    回覆
    0
  • PHPz

    PHPz2017-05-16 13:36:07

    使用錨點。範例可以網路搜尋或是Studio中File-New-Activity-ScrollingActivity建立一個自備的預設模板,裡面版面就是

    回覆
    0
  • 取消回覆