mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/main_layout"
|
|
style="@style/Screen">
|
|
|
|
<org.mozilla.gecko.BrowserToolbar android:id="@+id/browser_toolbar"
|
|
style="@style/BrowserToolbar"/>
|
|
|
|
<RelativeLayout android:id="@+id/gecko_layout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1">
|
|
|
|
<AbsoluteLayout android:id="@+id/plugin_container"
|
|
android:background="@android:color/transparent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"/>
|
|
|
|
<org.mozilla.gecko.AboutHomeContent android:id="@+id/abouthome_content"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="#ffffff"
|
|
android:isScrollContainer="true"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|