我试图让这个ImageView以相对布局显示在屏幕的右下角。
为了创建布局文件,我使用了Android Studio的设计视图(在查看布局文件时显示' design'的标签),并将图像拖动并调整大小到那里我得到了我想要的。但是,在真正的手机上,安装应用程序时,图像根本无法显示。
<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"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".HomeActivityFragment"
android:id="@+id/layout"
android:clickable="false">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/imageView"
android:layout_gravity="bottom|right"
android:layout_marginRight="20dp"
android:src="@drawable/action_black"
android:layout_marginEnd="20dp"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_marginBottom="20dp"
android:layout_alignParentStart="false" />
</RelativeLayout>