mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
840ced9d8a
--HG-- extra : rebase_source : 0af2667d01ad8f16b68a1ba0af3710fa07d5fa93
95 lines
5.3 KiB
XML
95 lines
5.3 KiB
XML
#filter substitution
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:gecko="http://schemas.android.com/apk/res/@ANDROID_PACKAGE_NAME@">
|
|
|
|
<RelativeLayout android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:paddingLeft="@dimen/abouthome_gutter_large"
|
|
android:paddingRight="@dimen/abouthome_gutter_large">
|
|
|
|
<Gecko.ImageView android:id="@+id/abouthome_logo"
|
|
android:src="@drawable/abouthome_logo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="24dip"
|
|
android:layout_marginTop="16dip"
|
|
android:layout_marginBottom="10dip"
|
|
android:layout_marginLeft="12dip"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentLeft="true"/>
|
|
|
|
<Gecko.TextView android:id="@+id/top_sites_title"
|
|
android:text="@string/abouthome_top_sites_title"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="26dip"
|
|
android:background="#34FFFFFF"
|
|
android:paddingLeft="12dip"
|
|
android:textSize="12sp"
|
|
android:textColor="@color/abouthome_section_title"
|
|
android:textStyle="bold"
|
|
android:gravity="left|center_vertical"
|
|
android:layout_below="@id/abouthome_logo"/>
|
|
|
|
<ImageView android:src="@drawable/abouthome_icon"
|
|
android:layout_width="180dp"
|
|
android:layout_height="153dp"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginRight="@dimen/abouthome_icon_crop"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentRight="true"/>
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_below="@id/top_sites_title">
|
|
|
|
<view class="org.mozilla.gecko.AboutHomeContent$TopSitesGridView"
|
|
android:id="@+id/top_sites_grid"
|
|
style="@style/AboutHome.Thumbnail.Grid"/>
|
|
|
|
<org.mozilla.gecko.AboutHomePromoBox android:id="@+id/promo_box"
|
|
android:background="@drawable/abouthome_promo_box"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginRight="12dp"
|
|
android:layout_marginTop="17dp"
|
|
android:layout_marginBottom="14dp"
|
|
android:drawablePadding="7dp"
|
|
android:gravity="center"
|
|
android:clickable="true"
|
|
android:textSize="15sp"
|
|
android:textColor="#FFFFFF"
|
|
android:visibility="gone"/>
|
|
|
|
<org.mozilla.gecko.AboutHomeSection android:id="@+id/last_tabs"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
gecko:title="@string/abouthome_last_tabs_title"
|
|
gecko:more_text="@string/abouthome_last_tabs_open"/>
|
|
|
|
<org.mozilla.gecko.AboutHomeSection android:id="@+id/recommended_addons"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
gecko:title="@string/abouthome_addons_title"
|
|
gecko:more_text="@string/abouthome_addons_browse"/>
|
|
|
|
<org.mozilla.gecko.AboutHomeSection android:id="@+id/remote_tabs"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
gecko:title="@string/remote_tabs"
|
|
gecko:more_text="@string/remote_tabs_show_all"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</merge>
|