diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2014-05-24 12:39:05 +0200 |
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2014-05-24 12:47:45 +0200 |
| commit | 2b2a2e19e1793ae79f80c8e520fb36a56e576e29 (patch) | |
| tree | 94e35a34b1b870e21bdf2ec6a695f9237bd08f0b /main/res/layout | |
| parent | cadf1bb896976c5dc04cfd4b1615ad694fec3415 (diff) | |
| download | cgeo-2b2a2e19e1793ae79f80c8e520fb36a56e576e29.zip cgeo-2b2a2e19e1793ae79f80c8e520fb36a56e576e29.tar.gz cgeo-2b2a2e19e1793ae79f80c8e520fb36a56e576e29.tar.bz2 | |
Implement a small internal browser (using webview) and allow the user to pick the user to select an internal/external browser if c:geo is the default of the geocaching url
Diffstat (limited to 'main/res/layout')
| -rw-r--r-- | main/res/layout/internal_browser.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/main/res/layout/internal_browser.xml b/main/res/layout/internal_browser.xml new file mode 100644 index 0000000..1e09ee0 --- /dev/null +++ b/main/res/layout/internal_browser.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <WebView + android:id="@+id/webview" + android:layout_width="match_parent" + android:layout_height="match_parent" /> +</LinearLayout>
\ No newline at end of file |
