2
我想創建一個非常簡單的android屏幕,具有以下內容:頂部橫幅,webview和底部橫幅。出於某種原因,我不能這樣做。我的xml看起來像:屏幕與頂級橫幅,webview和底部橫幅
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/FrameLayout02"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"
android:fitsSystemWindows="true" android:isScrollContainer="false">
<ImageView android:layout_width="wrap_content" android:layout_above="@+id/Web"
android:layout_height="fill_parent" android:layout_gravity="top"
android:src="@drawable/logo"></ImageView>
<WebView android:layout_gravity="center" android:id="@+id/Web"
android:layout_height="fill_parent" android:layout_width="fill_parent"></WebView>
<ImageView android:layout_width="wrap_content" android:layout_below="@+id/Web"
android:layout_height="fill_parent" android:layout_gravity="bottom"
android:src="@drawable/logo"></ImageView>
</LinearLayout>
有什麼不對?
感謝, 丹尼爾