gecko/mobile/android/base/resources/layout/abouthome_section.xml

46 lines
2.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2012-05-21 04:12:37 -07:00
<!-- 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.widget.LinkTextView android:id="@+id/more_text"
android:layout_width="fill_parent"
android:layout_height="@dimen/abouthome_rowitem_height"
android:textColor="@color/abouthome_section_more_text"
android:textSize="12sp"
android:gravity="center"
android:focusable="true"/>
</merge>