我是 Android 新手。这对我来说是新的。我尝试了很多来修改我的 UI,但我不能。我需要一些帮助来修复我的 UI 显示图像。我的代码我做了努力。我希望有人能帮助我解决我的问题.................................................. .....................
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="match_parent"
a:layout_height="match_parent">
<RelativeLayout
a:id="@+id/buttonsLayout"
a:layout_alignParentBottom="true"
a:layout_width="wrap_content"
a:layout_height="wrap_content"
a:layout_centerInParent="true">
<Button
a:text="^"
a:id="@+id/up"
a:layout_height="wrap_content"
a:layout_width="wrap_content"
a:layout_alignParentTop="true"
a:layout_centerHorizontal="true" />
<Button
a:text="<"
a:id="@+id/left"
a:layout_height="wrap_content"
a:layout_width="wrap_content"
a:layout_toLeftOf="@+id/center"
a:layout_centerVertical="true" />
<Button
a:text="0"
a:id="@+id/center"
a:layout_height="wrap_content"
a:layout_width="wrap_content"
a:layout_below="@+id/up"
a:layout_centerHorizontal="true"
a:layout_centerVertical="true" />
<Button
a:text=">"
a:id="@+id/right"
a:layout_height="wrap_content"
a:layout_width="wrap_content"
a:layout_toRightOf="@+id/center"
a:layout_centerVertical="true" />
<Button
a:text="v"
a:id="@+id/down"
a:layout_height="wrap_content"
a:layout_width="wrap_content"
a:layout_below="@+id/center"
a:layout_centerHorizontal="true" />
</RelativeLayout>
<ImageView
a:src="@android:drawable/ic_menu_gallery"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:layout_alignParentTop="true"
a:layout_above="@+id/buttonsLayout"
a:id="@+id/imageView1" />
</RelativeLayout>
我想要我的 UI 看到链接