我创建一个这样的对话框:
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>
并且图像会渲染,但它也会在我不想要的图像顶部放置一个黑条。这很常见吗?我如何摆脱黑条?
谢谢!