mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
6ee2b4ee8d
--HG-- extra : rebase_source : 069bf336dc6753ecae41c56a49196059724d9d83
46 lines
2.0 KiB
XML
46 lines
2.0 KiB
XML
<?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">
|
|
|
|
<TextView android:id="@+id/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:duplicateParentState="true"/>
|
|
|
|
<TextView android:id="@+id/subtitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="26dip"
|
|
android:layout_marginTop="1dip"
|
|
android:background="#34FFFFFF"
|
|
android:paddingLeft="12dip"
|
|
android:textSize="12sp"
|
|
android:textColor="@color/abouthome_section_subtitle"
|
|
android:gravity="left|center_vertical"
|
|
android:duplicateParentState="true"/>
|
|
|
|
<LinearLayout android:id="@+id/items_container"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:isScrollContainer="false"
|
|
android:duplicateParentState="true"/>
|
|
|
|
<org.mozilla.gecko.LinkTextView android:id="@+id/more_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="47dip"
|
|
android:textColor="@color/abouthome_section_more_text"
|
|
android:textSize="12sp"
|
|
android:gravity="center"
|
|
android:duplicateParentState="true"/>
|
|
|
|
</merge>
|