如何在布局边缘制作图像?

时间:2014-04-22 12:18:56

标签: android imageview

enter image description here您好我正在使用Android app。我正在寻找如图所示创建布局。我在中心创建了视图。但我想在布局的角落显示图像。我怎样才能做到这一点 ?请帮我提一些例子,提前谢谢:)enter image description here

2 个答案:

答案 0 :(得分:2)

尝试以下代码: -

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="200dp" >

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="200dp"
                    android:layout_margin="30dp"
                    android:layout_marginLeft="14dp"
                    android:background="#000000" >
                </RelativeLayout>

                <ImageView
                    android:layout_width="50dp"
                    android:layout_height="50dp"
                    android:layout_alignParentLeft="true"
                    android:layout_alignParentTop="true"
                    android:layout_marginLeft="14dp"
                    android:layout_marginTop="14dp"
                    android:src="@drawable/shape_circle_red" />

            </RelativeLayout>
        </RelativeLayout>

drawable - &gt; shape_circle_red

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval" >

    <solid android:color="#ff0000" />

    <size
        android:height="50dp"
        android:width="50dp" />

</shape>

答案 1 :(得分:0)

使用layout_alignParentRight或左侧或顶部或底部显示布局角落的图像。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@android:color/transparent"
    android:layout_alignParentRight="true"
    android:src="@drawable/btn_groupindicator_add" />