diff options
Diffstat (limited to 'mobile/android/base/resources/layout/panel_icon_item.xml')
-rw-r--r-- | mobile/android/base/resources/layout/panel_icon_item.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/mobile/android/base/resources/layout/panel_icon_item.xml b/mobile/android/base/resources/layout/panel_icon_item.xml new file mode 100644 index 000000000..7f3e554b3 --- /dev/null +++ b/mobile/android/base/resources/layout/panel_icon_item.xml @@ -0,0 +1,36 @@ +<?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/. --> + +<org.mozilla.gecko.widget.SquaredRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <ImageView + android:id="@+id/background" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:scaleType="centerCrop" /> + + <ImageView + android:id="@+id/image" + android:layout_width="50dp" + android:layout_height="50dp" + android:scaleType="centerInside" + android:layout_centerInParent="true" /> + + <TextView + android:id="@+id/title" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:singleLine="true" + android:ellipsize="end" + android:textColor="@android:color/white" + android:layout_alignParentBottom="true" + android:textSize="12sp" + android:padding="8dp" + android:background="@color/panel_icon_item_title_background" + android:layout_gravity="center_horizontal"/> + +</org.mozilla.gecko.widget.SquaredRelativeLayout> |