我正在Webview
为 Android 制作一个简单的应用程序。当没有连接时,我会显示一个自定义的 toast 消息,它将覆盖整个屏幕,但在 toast 内部我想显示一个带有ImageView
. 问题是吐司覆盖了整个屏幕,因为我使用以下代码来执行此操作:
toast.setGravity(Gravity.FILL_HORIZONTAL | Gravity.FILL_VERTICAL, 0, 0);
我怎么能把ImageView
里面的吐司完全居中?这是ImageView
在名为的 toast 布局中toast_custom_layout.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:orientation="horizontal"
android:padding="5dp" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo"
android:background="@color/white" />
</LinearLayout>
这是我活动中的代码,将在没有连接时显示吐司:
public void onReceivedError(WebView view, int errorCode,String description, String failingUrl) {
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_custom_layout,
(ViewGroup) findViewById(R.id.toast_layout_root));
Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
toast.setGravity(Gravity.FILL_HORIZONTAL | Gravity.FILL_VERTICAL, 0, 0);
}
朋友们,我将非常感谢您的建议。