diff options
author | Parménides GV <parmegv@sdf.org> | 2015-03-13 14:22:25 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2015-03-13 14:22:25 +0100 |
commit | 6738a3f17cb38febfa1c698d6b420aed9e17ad74 (patch) | |
tree | bcdcfd266741d27d5e42cb1473b75c0a101a41f0 /app/src/main/res/layout/dashboard.xml | |
parent | 06b98e2c28f93f2294f3e6f88ba3812e8b8751e4 (diff) |
Show user session status separately.
Switching orientation doesn't hide that information, now we have two
places to avoid it.
Diffstat (limited to 'app/src/main/res/layout/dashboard.xml')
-rw-r--r-- | app/src/main/res/layout/dashboard.xml | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/app/src/main/res/layout/dashboard.xml b/app/src/main/res/layout/dashboard.xml index 67a1122f..4a9dd502 100644 --- a/app/src/main/res/layout/dashboard.xml +++ b/app/src/main/res/layout/dashboard.xml @@ -16,7 +16,6 @@ android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:ellipsize="marquee" - android:fadingEdge="horizontal" android:singleLine="true" android:text="@string/provider_label" android:textAppearance="?android:attr/textAppearanceMedium" /> @@ -28,18 +27,22 @@ android:textSize="28sp" android:layout_marginLeft="10dp" android:ellipsize="marquee" - android:fadingEdge="horizontal" android:singleLine="true" android:text="@string/provider_label_none" android:textAppearance="?android:attr/textAppearanceMedium" /> </LinearLayout> - <View + <TextView + android:id="@+id/user_session_status" android:layout_width="wrap_content" - android:layout_height="2dp" - android:layout_marginBottom="15dp" - android:background="@android:drawable/divider_horizontal_bright" /> + android:layout_height="wrap_content" + android:textSize="18sp" + android:layout_marginLeft="10dp" + android:ellipsize="marquee" + android:singleLine="true" + android:textAppearance="?android:attr/textAppearanceMedium" + /> <LinearLayout android:id="@+id/servicesCollection" |