如何在Android上向Webview添加按钮?

时间:2011-07-17 09:52:19

标签: android webview

我正在以编程方式生成webview我想在webview上添加一个按钮。我可以添加一个普通的按钮,但是在webview之前,而不是在它上面。

有没有办法在webview上添加按钮?

2 个答案:

答案 0 :(得分:2)

  

像这样使用......

      <FrameLayout 
         android:layout_width="fill_parent"
         android:layout_height="500dp"
         android:layout_weight="1"
                >
            <WebView
                android:id="@+id/main_web "
                android:layout_width="fill_parent"
                android:layout_height="500dp"
                android:layout_weight="1" />

                 <ImageButton
                    android:id="@+id/refresh"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="right"
                  ></ImageButton>
        </FrameLayout>

答案 1 :(得分:1)

您可以使用FrameLayout(http://developer.android.com/reference/android/widget/FrameLayout.html)在WebView顶部添加按钮。

首先将WebView添加到Layout,然后将Button添加到Button并调整Button的重力,使其位于您想要的位置。