我创建了一个像这样的对话框:
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>
并且图像会渲染,但它也会在图像顶部放置一个我不想要的黑条。那是常见的吗?我怎么摆脱黑条呢?
谢谢!
答案 0 :(得分:1)
听起来您正在使用的图像太小而无法扩展。您是否尝试将以下属性添加到xml的ImageView元素中?
android:scaleType="fitXY"