Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | <?xml version="1.0" encoding="utf-8"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <org.mozilla.gecko.widget.TabRow xmlns:android="http://schemas.android.com/apk/res/android" |
michael@0 | 7 | style="@style/TabsItem" |
michael@0 | 8 | android:focusable="true" |
michael@0 | 9 | android:id="@+id/info" |
michael@0 | 10 | android:layout_width="fill_parent" |
michael@0 | 11 | android:layout_height="wrap_content" |
michael@0 | 12 | android:paddingLeft="12dip" |
michael@0 | 13 | android:paddingTop="6dip" |
michael@0 | 14 | android:paddingBottom="6dip" |
michael@0 | 15 | android:background="@drawable/tab_row"> |
michael@0 | 16 | |
michael@0 | 17 | <org.mozilla.gecko.widget.TabThumbnailWrapper |
michael@0 | 18 | android:id="@+id/wrapper" |
michael@0 | 19 | android:layout_width="wrap_content" |
michael@0 | 20 | android:layout_height="wrap_content" |
michael@0 | 21 | android:padding="4dip" |
michael@0 | 22 | android:background="@drawable/tab_thumbnail" |
michael@0 | 23 | android:duplicateParentState="true"> |
michael@0 | 24 | |
michael@0 | 25 | <org.mozilla.gecko.widget.ThumbnailView android:id="@+id/thumbnail" |
michael@0 | 26 | android:layout_width="@dimen/tab_thumbnail_width" |
michael@0 | 27 | android:layout_height="@dimen/tab_thumbnail_height" |
michael@0 | 28 | android:src="@drawable/tab_thumbnail_default"/> |
michael@0 | 29 | |
michael@0 | 30 | </org.mozilla.gecko.widget.TabThumbnailWrapper> |
michael@0 | 31 | |
michael@0 | 32 | <TextView android:id="@+id/title" |
michael@0 | 33 | android:layout_width="0dip" |
michael@0 | 34 | android:layout_height="fill_parent" |
michael@0 | 35 | android:layout_weight="1.0" |
michael@0 | 36 | android:paddingTop="4dip" |
michael@0 | 37 | android:paddingLeft="8dip" |
michael@0 | 38 | android:paddingRight="4dip" |
michael@0 | 39 | style="@style/TabRowTextAppearance" |
michael@0 | 40 | android:textColor="#FFFFFFFF" |
michael@0 | 41 | android:textSize="14sp" |
michael@0 | 42 | android:singleLine="false" |
michael@0 | 43 | android:maxLines="4" |
michael@0 | 44 | android:duplicateParentState="true"/> |
michael@0 | 45 | |
michael@0 | 46 | <ImageButton android:id="@+id/close" |
michael@0 | 47 | style="@style/TabsItemClose" |
michael@0 | 48 | android:layout_width="34dip" |
michael@0 | 49 | android:layout_height="fill_parent" |
michael@0 | 50 | android:background="@drawable/action_bar_button_inverse" |
michael@0 | 51 | android:scaleType="center" |
michael@0 | 52 | android:contentDescription="@string/close_tab" |
michael@0 | 53 | android:src="@drawable/tab_close"/> |
michael@0 | 54 | |
michael@0 | 55 | </org.mozilla.gecko.widget.TabRow> |