diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2013-07-10 21:57:43 -0600 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2013-07-19 15:10:48 -0600 |
commit | b19dc954b381c1e266395fdc1f19a1246096d4ab (patch) | |
tree | c0d8868d46253e014a5ecceb8be81023df6d8634 /res/layout | |
parent | f9131ce775b180cee3fa8ec1ac52290a7f58d1ef (diff) |
Add a progress bar while VPN connection is being established
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/eip_service_fragment.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/res/layout/eip_service_fragment.xml b/res/layout/eip_service_fragment.xml index 8f7c1d22..885c78a3 100644 --- a/res/layout/eip_service_fragment.xml +++ b/res/layout/eip_service_fragment.xml @@ -36,6 +36,17 @@ android:layout_alignParentRight="true" android:layout_alignParentTop="true" android:layout_marginRight="10dp" /> + + <ProgressBar + android:id="@+id/eipProgress" + android:layout_width="match_parent" + android:layout_height="wrap_content" + style="@android:style/Widget.Holo.ProgressBar.Horizontal" + android:indeterminate="true" + android:visibility="gone" + android:layout_below="@id/eipLabel" + android:layout_marginLeft="15dp" + android:layout_marginRight="15dp" /> <RelativeLayout android:id="@+id/eipDetail" |