私はアンドロイドでの開発が初めてです。私を助けてください。
左の画像は現在行っているもので、右は私が望むものです。赤 - ListView、グレー - relativelayout の背景
その上にコンポーネントを追加する必要があります。リストの一部をカバーするために提供されたアーチ画像を使用した簡単なソリューションを次に示します。独自のアーチ イメージを提供する必要があります。
写真:
コード:
<?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>