0

線形レイアウトの上に緑の色合いを作りたいのですが、次の画像のような内容です

シャドービュー

これがUIのコードスニペットです

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="168dp"
    android:layout_height="120dp" 
    android:orientation="vertical" 
    android:background="@drawable/grid_item_init_border"
    >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="90dp"
        android:padding="8dp"
        android:orientation="horizontal"
        android:background="@color/white"
        android:layout_margin="1dp">


    <ImageView
        android:id="@+id/image"
        android:layout_width="80dp"
        android:layout_height="match_parent"
        android:src="@drawable/no_image" />


        <TextView
            android:id="@+id/app_name" 
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/image"
        android:maxLines="2"
        android:ellipsize="end"
        android:layout_marginLeft="4dp"
        android:text="VVVVVVVVVVz"/>

        <TextView android:id="@+id/category"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/app_name"
            android:layout_below="@+id/app_name"
            android:lines="1"
            android:ellipsize="marquee"
            android:text="xxxxxxxxxxz"/>

    </RelativeLayout>


    <CheckBox
        android:id="@+id/share"
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:layout_margin="4dp"
        android:paddingLeft="24dp"
        android:text="CheckBox" 
        android:button="@drawable/checkbox_white_gray" 
        android:background="@color/init_grid_item_checkbox_gray"/>

レイアウト上に影を描画するには、コードに何を追加すればよいですか?

4

1 に答える 1

1

に別のビューを追加し、RelativeLayoutマージン/パディングを次のように配置する必要があります。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="168dp"
android:layout_height="120dp" 
android:orientation="vertical" 
android:background="@drawable/grid_item_init_border">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="90dp"
    android:orientation="horizontal"
    android:background="@color/white"
    android:layout_margin="1dp">


  <ImageView
    android:id="@+id/image"
    android:layout_width="80dp"
    android:layout_height="match_parent"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginDown="8dp"
    android:src="@drawable/no_image" />


  <TextView
    android:id="@+id/app_name" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@+id/image"
    android:maxLines="2"
    android:ellipsize="end"
    android:layout_marginLeft="4dp"
    android:layout_marginTop="8dp"
    android:layout_marginRight="8dp"
    android:text="VVVVVVVVVVz"/>

  <TextView
    android:id="@+id/category"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="8dp"
    android:layout_marginBottom="8dp"
    android:layout_alignLeft="@+id/app_name"
    android:layout_below="@+id/app_name"
    android:lines="1"
    android:ellipsize="marquee"
    android:text="xxxxxxxxxxz"/>

  <View android:id="@+id/overlay"
    layout_width="match_parent"
    layout_height="match_patent"
    background="@drawable/green_overlay"/>

 </RelativeLayout>


 <CheckBox
    android:id="@+id/share"
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:layout_margin="4dp"
    android:paddingLeft="24dp"
    android:text="CheckBox" 
    android:button="@drawable/checkbox_white_gray" 
    android:background="@color/init_grid_item_checkbox_gray"/>


</LinearLayout>

オーバーレイはどこに@drawable/green_overlayありますか (色、形、画像、さらには 9 パッチ)。押された/押されていない状態が必要な場合は、selector(こちらをご覧ください)を使用することもできます。

于 2013-02-27T23:25:24.447 に答える