Как поставить кнопку на веб-просмотр - PullRequest
2 голосов
/ 10 августа 2011

Я хочу в фоновом режиме я покажу веб-просмотр.и в этом веб-представлении на переднем плане я хочу разместить еще одну кнопку.Как добиться того же.Я могу загрузить GoogleMap, используя вид карты.но не может разместить на нем кнопку.Я показываю карту Google в виде карты.

enter image description here

Спасибо

1 Ответ

1 голос
/ 10 августа 2011

Спасибо всем. Я получил решение с помощью Framelayout.

<FrameLayout 

        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/header"
        android:layout_above="@+id/footer">
        <WebView
            android:id="@+id/GD_webview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_above="@+id/footer" />

            <Button
            android:layout_centerVertical="true"
            android:id="@+id/setTimeBtn"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_width="wrap_content"
            android:background="@drawable/settime"
            android:layout_gravity="bottom"
            android:layout_marginBottom="15dip"></Button>
    </FrameLayout 
>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...