2011-07-06 68 views
0

我想用一個按鈕有一個嵌入式網站。當我添加按鈕時,Web視圖消失。我試圖把按鈕放在一個單獨的容器中,但沒有任何工作。請幫忙。android我想用一個按鈕有一個嵌入式網站

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
    <WebView 
     android:id="@+id/webcast" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1.0" 
    /> 
    <ImageButton 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:src="@drawable/video" 
     android:layout_gravity="top" 
    /> 
</LinearLayout> 

回答

0

只需使用FrameLayout來代替LinearLayout。通過這個,你將擁有webview的按鈕。

+0

嗨,我無法得到它的工作, –

相關問題