summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-04-23 17:20:18 +0200
committerParménides GV <parmegv@sdf.org>2015-04-23 17:20:18 +0200
commit990de6d1dec42d9a03b2bd799f16b6fcfd91b959 (patch)
treebc9237b44dfc9e0f8865afc015996974264b2462
parent3f824156982a152ddbabb40000e584ffe92293b7 (diff)
FlowLayout, to show the vpn icon in some small devices
Tested with physical Galaxy Young S6310.
-rw-r--r--app/build.gradle1
-rw-r--r--app/src/main/res/layout-xlarge/eip_service_fragment.xml58
-rw-r--r--app/src/main/res/layout/eip_service_fragment.xml15
3 files changed, 30 insertions, 44 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 112963b0..06af82c8 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -47,6 +47,7 @@ dependencies {
compile 'com.google.code.gson:gson:2+'
compile 'org.thoughtcrime.ssl.pinning:AndroidPinning:1.0.0'
compile 'mbanje.kurt:fabbutton:1.0.9'
+ compile "com.wefika:flowlayout:0.3.0"
}
def processFileInplace(file, Closure processText) {
diff --git a/app/src/main/res/layout-xlarge/eip_service_fragment.xml b/app/src/main/res/layout-xlarge/eip_service_fragment.xml
index 38b6aca3..bfa1105c 100644
--- a/app/src/main/res/layout-xlarge/eip_service_fragment.xml
+++ b/app/src/main/res/layout-xlarge/eip_service_fragment.xml
@@ -3,54 +3,42 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
- android:layout_marginLeft="20dp" >
+ android:layout_marginLeft="20dp"
+ android:layout_marginStart="20dp">
<TextView
android:id="@+id/eipLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
+ android:layout_marginStart="10dp"
android:clickable="true"
android:text="@string/eip_service_label"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="26sp" />
- <Switch
- android:id="@+id/eipSwitch"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:layout_marginRight="10dp"
- android:height="26dp"/>
-
- <ProgressBar
- android:id="@+id/eipProgress"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- style="@android:style/Widget.Holo.ProgressBar.Horizontal"
+ <view
+ android:id="@+id/vpn.Status.Image"
+ android:layout_width="@dimen/progress_button"
+ android:color="@android:color/holo_blue_dark"
+ android:layout_height="@dimen/progress_button"
+ class="mbanje.kurt.fabbutton.FabButton"
+ android:layout_gravity="center"
+ android:visibility="visible"
+ android:layout_centerInParent="true"
android:indeterminate="true"
- android:visibility="gone"
- android:layout_below="@id/eipLabel"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp" />
-
- <TextView
- android:id="@+id/status_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/eipLabel"
- android:paddingBottom="10dp"
- android:paddingLeft="10dp"
- android:paddingRight="10dp"
- android:paddingTop="10dp"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:clickable="true"
- android:text="@string/eip_state_not_connected"
- android:textSize="16sp" />
-
+ android:max="100"
+ fbb_autoStart="true"
+ fbb_progressColor="#ff170aff"
+ fbb_progressWidthRatio="0.1"
+ android:layout_toRightOf="@id/eipLabel"
+ android:layout_toEndOf="@id/eipLabel"
+ android:layout_alignTop="@id/eipLabel"
+ android:layout_marginStart="@dimen/add_button_margin"
+ android:layout_marginLeft="@dimen/add_button_margin"
+ />
</RelativeLayout>
diff --git a/app/src/main/res/layout/eip_service_fragment.xml b/app/src/main/res/layout/eip_service_fragment.xml
index 4ad8725d..e013c7b4 100644
--- a/app/src/main/res/layout/eip_service_fragment.xml
+++ b/app/src/main/res/layout/eip_service_fragment.xml
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
+<com.wefika.flowlayout.FlowLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginTop="10dp" >
+ android:layout_marginTop="10dp"
+ android:orientation="horizontal">
<TextView
android:id="@+id/eipLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
+ android:layout_marginStart="10dp"
android:clickable="true"
android:text="@string/eip_service_label"
android:textAppearance="?android:attr/textAppearanceMedium" />
@@ -29,11 +29,8 @@
fbb_autoStart="true"
fbb_progressColor="#ff170aff"
fbb_progressWidthRatio="0.1"
- android:layout_toRightOf="@id/eipLabel"
- android:layout_toEndOf="@id/eipLabel"
- android:layout_alignTop="@id/eipLabel"
android:layout_marginStart="@dimen/add_button_margin"
android:layout_marginLeft="@dimen/add_button_margin"
/>
-</RelativeLayout>
+</com.wefika.flowlayout.FlowLayout>