WebViewをトーストまたはWebviewに入れて、画面の小さな部分に表示しようとしています。
xmlは次のとおりです。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".Webview" />
<WebView
android:id="@+id/webviewEquationsView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</RelativeLayout>
</LinearLayout>
そして、これが私がウェブビューを配置したいJavaの部分であり、Androidのウェブサイトから頭を悩ませたコードです-トーストセクション:
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_equation_menu,(ViewGroup) findViewById(R.id.toast_layout_root));
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
前もって感謝します :)