2011-12-13 12:15:17 -08:00
|
|
|
<?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/. -->
|
|
|
|
|
2012-01-24 08:52:26 -08:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="47dip"
|
|
|
|
android:gravity="left|center_vertical"
|
2012-07-12 15:13:54 -07:00
|
|
|
android:background="@drawable/action_bar_button">
|
2012-01-17 19:40:43 -08:00
|
|
|
|
2012-01-24 08:52:26 -08:00
|
|
|
<ImageView android:id="@+id/addon_icon"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="12dip"
|
|
|
|
android:src="@drawable/ic_addons_empty"/>
|
|
|
|
|
2012-01-24 08:52:26 -08:00
|
|
|
<TextView android:id="@+id/addon_title"
|
|
|
|
android:layout_width="wrap_content"
|
2012-07-12 15:13:54 -07:00
|
|
|
android:layout_height="fill_parent"
|
2012-01-24 08:52:26 -08:00
|
|
|
android:layout_toRightOf="@id/addon_icon"
|
2012-01-24 08:52:26 -08:00
|
|
|
android:layout_marginLeft="12dip"
|
2012-07-12 15:13:54 -07:00
|
|
|
android:gravity="center_vertical"
|
2012-01-17 19:40:43 -08:00
|
|
|
android:textSize="15sp"
|
2012-01-24 08:52:26 -08:00
|
|
|
android:textColor="#222222"/>
|
2012-01-17 19:40:43 -08:00
|
|
|
|
2012-01-24 08:52:26 -08:00
|
|
|
<TextView android:id="@+id/addon_version"
|
|
|
|
android:layout_width="wrap_content"
|
2012-07-12 15:13:54 -07:00
|
|
|
android:layout_height="fill_parent"
|
2012-01-24 08:52:26 -08:00
|
|
|
android:layout_toRightOf="@id/addon_title"
|
|
|
|
android:layout_alignBottom="@id/addon_title"
|
|
|
|
android:layout_marginLeft="5dip"
|
2012-07-12 15:13:54 -07:00
|
|
|
android:gravity="center_vertical"
|
2012-01-24 08:52:26 -08:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:textColor="#666666"/>
|
|
|
|
|
2012-07-12 15:13:54 -07:00
|
|
|
<View android:layout_width="fill_parent"
|
2012-07-19 11:42:56 -07:00
|
|
|
android:layout_height="1dp"
|
2012-07-12 15:13:54 -07:00
|
|
|
android:background="@drawable/abouthome_divider"
|
|
|
|
android:layout_alignParentBottom="true"/>
|
|
|
|
|
2012-01-24 08:52:26 -08:00
|
|
|
</RelativeLayout>
|