0

私はアンドロイドでの開発が初めてです。私を助けてください。 ここに画像の説明を入力

左の画像は現在行っているもので、右は私が望むものです。赤 - ListView、グレー - relativelayout の背景

4

1 に答える 1

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>
于 2013-11-04T22:03:28.080 に答える