mobile/android/base/resources/layout/shared_ui_components.xml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mobile/android/base/resources/layout/shared_ui_components.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.8 +
     1.9 +<!-- This file is used to include shared UI components in different gecko app
    1.10 +     layouts, such as gecko_app.xml and web_app.xml -->
    1.11 +
    1.12 +<merge xmlns:android="http://schemas.android.com/apk/res/android"
    1.13 +       xmlns:gecko="http://schemas.android.com/apk/res-auto">
    1.14 +
    1.15 +    <org.mozilla.gecko.GeckoView android:id="@+id/layer_view"
    1.16 +                                 gecko:doinit="false"
    1.17 +                                 android:layout_width="fill_parent"
    1.18 +                                 android:layout_height="fill_parent"/>
    1.19 +
    1.20 +    <AbsoluteLayout android:id="@+id/plugin_container"
    1.21 +                    android:background="@android:color/transparent"
    1.22 +                    android:layout_width="fill_parent"
    1.23 +                    android:layout_height="fill_parent"/>
    1.24 +
    1.25 +    <org.mozilla.gecko.FormAssistPopup android:id="@+id/form_assist_popup"
    1.26 +                                       android:layout_width="fill_parent"
    1.27 +                                       android:layout_height="fill_parent"
    1.28 +                                       android:visibility="gone"/>
    1.29 +
    1.30 +    <include layout="@layout/text_selection_handles"/>
    1.31 +
    1.32 +    <FrameLayout android:id="@+id/camera_layout"
    1.33 +                 android:layout_height="wrap_content"
    1.34 +                 android:layout_width="wrap_content"
    1.35 +                 android:layout_alignParentRight="true"
    1.36 +                 android:layout_alignParentBottom="true">
    1.37 +    </FrameLayout>
    1.38 +
    1.39 +</merge>

mercurial