aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/mstaru_list.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/mstaru_list.xml')
-rw-r--r--res/layout/mstaru_list.xml78
1 files changed, 78 insertions, 0 deletions
diff --git a/res/layout/mstaru_list.xml b/res/layout/mstaru_list.xml
new file mode 100644
index 00000000..d4b870f6
--- /dev/null
+++ b/res/layout/mstaru_list.xml
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The CyanogenMod Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/mstaru"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="16dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="17dp"
+ android:textColor="@color/black_46"
+ android:textSize="14sp"
+ android:text="@string/frequent" />
+
+ <LinearLayout android:id="@+id/mstaru_list"
+ android:orientation="vertical"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:visibility="gone">
+
+ <include layout="@layout/mstaru_row" />
+
+ <include layout="@layout/mstaru_row" />
+
+ <include layout="@layout/mstaru_row" />
+
+ <include layout="@layout/mstaru_row" />
+
+ <include layout="@layout/mstaru_row" />
+ </LinearLayout>
+
+ <LinearLayout android:id="@+id/mstaru_empty"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="49dp"
+ android:layout_marginBottom="61dp"
+ android:visibility="visible">
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:background="@drawable/circle_large"
+ android:src="@drawable/ic_frequent_placeholder"
+ android:tint="@color/black_26"
+ android:backgroundTint="@color/off_white"
+ android:scaleType="center"/>
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:layout_marginTop="19dp"
+ android:textColor="@color/black_26"
+ android:text="@string/access_the_files_you_use_the_most_here"/>
+ </LinearLayout>
+</LinearLayout>