帮助!
我有一个奇怪的问题。我正在编写一个 Android 应用程序,允许用户选择要在下一页使用的图像。这一切都很好,但是当我这样做时
imageView.setImageBitmap(bitmap);
显示了新图像,但基本上在页面上垂直居中,隐藏了我在设计时放置在页面上的按钮。布局如下所示:
<?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" >
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/jeepfront" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true"
android:layout_marginTop="46dp"
android:text="Button" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:layout_centerHorizontal="true"
android:layout_marginTop="43dp"
android:text="Picture resized/cropped with any buttons"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
如果我不调用 setBitmap,那么默认图片 (@drawable/jeepfront) 显示得很好,在页面顶部,我可以看到按钮。
有任何想法吗?我对 Android 有点陌生,但从 1.0 开始就一直在使用 Java。
谢谢,大卫