我有我奇怪的问题。或者也许我弄错了。但我ImageView
的有点像填充物。它看起来像这样:
所以“MyImage”应该与最上面对齐。但是,当我检查图形布局时,图像被调整得更低。所以就像我的整个图像是绿色的虚线。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/master_background">
<ImageView
android:id="@+id/topPage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/image" />
</RelativeLayout>
这是我的代码。我试图更改src
为,background
但我的图像已调整。如何调整图像。此应用程序没有窗口标题。