Created
August 27, 2017 08:01
-
-
Save farooqkhan003/0e652976c18e3f0b1e59d357b050b36f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:background="#55000000" | |
android:orientation="vertical"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="horizontal"> | |
<ImageView | |
android:id="@+id/icon1" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:src="@drawable/icon1" /> | |
<ImageView | |
android:id="@+id/icon2" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:src="@drawable/icon2" /> | |
<ImageView | |
android:id="@+id/icon3" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:src="@drawable/icon3" /> | |
<ImageView | |
android:id="@+id/icon4" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:src="@drawable/icon4" /> | |
<ImageView | |
android:id="@+id/icon5" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:src="@drawable/icon5" /> | |
</LinearLayout> | |
<Button | |
android:id="@+id/widget_button" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Open App" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment