0

私のアプリにはリストビューがあり、次のUIを配置する必要がありますここに画像の説明を入力してください

上の画像に示されているように、私は垂直方向の線形レイアウトで丸みを帯びた背景を得ることができます。そのため、次の順序で配置しました。1. TextView 2. FrameLayoutのImageViewで、TextViewをFrameLayout3内のImageViewの上に配置できます。

Now my problem is 
1. i want to place the image view of the calendar icon at the top right corner, so that a part of the icon gets placed over the image view 
2. The image inside the Frame layouts imageview is received from an url without round corners. I want to show round corners over the image

以下は私のレイアウトの内容です

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" 
        android:background="@drawable/img_bg"
        android:layout_margin="10dp">

        <TextView
            android:id="@+id/event_list_header"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/app_name"
            android:textColor="@color/title"
            android:textAppearance="?android:attr/textAppearanceLarge" 
            android:layout_marginTop="10dp"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"/>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" 
            android:layout_margin="6dp">

            <FrameLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">

                <ImageView
                    android:contentDescription="@string/app_name"
                    android:id="@+id/event_list_image"
                    android:layout_width="fill_parent"
                    android:layout_height="280dp"/>

                <RelativeLayout
                    android:layout_width="fill_parent"
                    android:layout_height="match_parent" 
                    android:background="@drawable/offer_title_bg"
                    android:layout_gravity="bottom">

                    <TextView
                        android:id="@+id/event_overlay_text"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentLeft="true"
                        android:layout_centerVertical="true"
                        android:textColor="#FFFFFF"
                        android:layout_marginLeft="10dp"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </RelativeLayout>
            </FrameLayout>
        </LinearLayout>

        <TextView
            android:id="@+id/event_timing_text"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/app_name"
            android:textColor="@color/black"
            android:textAppearance="?android:attr/textAppearanceLarge" 
            android:layout_marginBottom="10dp"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"/>

    </LinearLayout>

</RelativeLayout>

このUIを可能にする方法...

4

1 に答える 1

0

RelativeLayoutとalignTopを使用します。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/event_list_image"
        android:layout_width="110dip"
        android:layout_height="110dip"
        android:layout_margin="1dip"
        android:src="@drawable/main0x" />

    <TextView
        android:id="@+id/event_overlay_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/event_list_image"
        android:layout_marginLeft="100dp"
        android:layout_marginTop="1dp"/>


</RelativeLayout>
于 2012-09-17T05:14:32.910 に答える