我是android的新开发者。请帮我。
左图是目前正在做的,右边是我想要的。红色 - ListView,灰色 - 相对布局的背景
答案 0 :(得分:0)
您需要在其上添加组件。这是一个简单的解决方案,提供的拱形图像覆盖了部分列表。您需要提供自己的拱形图像。
图:
代码:
<?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>