私は画面全体を2つのビューで表示し、同時に両方のビューを同時に表示したいと思います。 myCustomView
は、カスタムグラフィックスを描画するonDrawを(この方法の最後の文は無効(ある))を使用していること1つのビューを別のビューのオーバーレイとしてどのように表示するのですか?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<org.example.myCustomView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
注:私のレイアウトは、このようになります。私が得ている問題は、表示されるのはmyCustomView
、WebView
のみです。 mycustomView
の背景色を透明に変更しようとしましたが、違いはありません。
WebView
にオーバーレイとしてmyCustomView
を埋め込むこともできますし、その逆も可能です。
ありがとうございます!私はLinearLayoutをRelativeLayoutに変更しただけです。他の2つの回答は機能しませんでした。 – ace
ようこそ。すべてのベスト:D – techiServices
'FrameLayout'は互いの相対的な位置付けが心配されていない場合にも良いです。 –