1
0
mirror of https://github.com/sismics/docs.git synced 2026-05-13 11:01:21 +00:00

Android: better flags, tags loading feedback

This commit is contained in:
jendib
2014-11-25 00:09:12 +01:00
parent a6c123ad03
commit a84748f075
10 changed files with 35 additions and 5 deletions

View File

@@ -18,6 +18,7 @@
android:layout_height="match_parent"
android:layout_gravity="start"
android:orientation="vertical"
android:clickable="true"
android:background="#fff"
android:elevation="5dp">
@@ -141,7 +142,33 @@
android:layout_height="0dp"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
android:dividerHeight="0dp"/>
<RelativeLayout
android:id="@+id/tagProgressView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<ProgressBar
style="?android:progressBarStyle"
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"/>
</RelativeLayout>
<TextView
android:id="@+id/tagEmptyView"
android:visibility="gone"
android:padding="12dp"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:text="@string/no_tags"
android:textSize="14sp"/>
</LinearLayout>