需要在相对布局中放置徽标

时间:2013-05-10 04:09:14

标签: android relativelayout

我正在使用一个新的Android应用程序。现在我需要在右下角放置一个徽标我在使用相对布局作为父亲。所以我很难请一些人帮我解决这个问题。 的图片 My need is to fix the red logo above the progress-bar and bottom right of the window as shown in the picture

2 个答案:

答案 0 :(得分:3)

您可以通过使用以下内容轻松完成此操作:

.....

<ImageView
android:id = "@+id/logo"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_alignParentBottom = "true"
android:layout_alignParentRight = "true"
android:src = "@drawable/logo"
/>

答案 1 :(得分:2)

使用此

<?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" >

    <ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/progressBar"
        android:layout_alignParentRight="true"
        android:src="@drawable/ic_logo" />

</RelativeLayout>