blob: b7b86d60ef1045f10143f41f894abfa385ace027 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/shop_themes_layout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:alpha="0">
<TextView
android:id="@+id/shop_themes"
android:layout_width="140dp"
android:layout_height="44dp"
android:layout_marginBottom="@dimen/shop_themes_margin_bottom"
android:layout_gravity="center_horizontal"
android:textSize="14sp"
android:textColor="@color/shop_themes_text_color"
android:textAllCaps="true"
android:gravity="center"
android:hapticFeedbackEnabled="true"
android:text="@string/shop_themes"
android:clickable="true"
android:focusable="true"
android:background="@drawable/shop_themes_bg"/>
<!-- This view will be set to gone if the device does not have a navigation bar -->
<Space
android:id="@+id/navbar_padding"
android:layout_width="match_parent"
android:layout_height="@*android:dimen/system_bar_height"/>
</LinearLayout>
|