1

我创建一个这样的对话框:

Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.please_wait); 
dialog.show(); //this will show dialog 

这是它的xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<ImageView
    android:id="@+id/please_wait"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/please_wait_1"/>

</RelativeLayout>

并且图像会渲染,但它也会在我不想要的图像顶部放置一个黑条。这很常见吗?我如何摆脱黑条?

谢谢!

4

1 回答 1

1

听起来您使用的图像太小而无法缩放。您是否尝试将以下属性添加到 xml 的 ImageView 元素?

android:scaleType="fitXY"
于 2012-09-09T18:21:36.900 回答