more tweaks to new layout

This commit is contained in:
Nathan Freitas 2015-02-01 23:35:57 -05:00
parent 6a83a0d2f6
commit cf50ec1433
1 changed files with 13 additions and 5 deletions

View File

@ -3,12 +3,14 @@
<LinearLayout android:gravity="center_vertical|center_horizontal" <LinearLayout android:gravity="center_vertical|center_horizontal"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent" android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent"
android:backgroundTint="@color/panel_background"
>
<LinearLayout android:gravity="center_vertical|center_horizontal" <LinearLayout android:gravity="center_vertical|center_horizontal"
android:orientation="vertical" android:layout_width="match_parent" android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="#686868" android:background="@color/panel_background"
> >
<!-- <!--
@ -107,20 +109,26 @@
android:orientation="horizontal" android:layout_width="match_parent" android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="5dp" android:padding="5dp"
android:background="#686868" android:background="@color/panel_background"
> >
<Button <Button
android:id="@+id/btnBrowser" android:id="@+id/btnBrowser"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Open Browser" /> android:text="Open Browser"
android:enabled="false"
/>
<Button <Button
android:id="@+id/btnVPN" android:id="@+id/btnVPN"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Start VPN" /> android:text="Start VPN"
android:enabled="false"
/>
</LinearLayout> </LinearLayout>