如何在面具上剪切列表视图?

时间:2013-11-04 21:08:18

标签: android listview mask clip

我是android的新开发者。请帮我。 enter image description here

左图是目前正在做的,右边是我想要的。红色 - ListView,灰色 - 相对布局的背景

1 个答案:

答案 0 :(得分:0)

您需要在其上添加组件。这是一个简单的解决方案,提供的拱形图像覆盖了部分列表。您需要提供自己的拱形图像。

图:

enter image description here

代码:

<?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" >

<ListView
  android:id="@+id/list"
  android:layout_width="match_parent"
  android:layout_height="match_parent"> 
</ListView>

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitXY"
    android:src="@drawable/arch" />

 </RelativeLayout>