Skip to content

Instantly share code, notes, and snippets.

@farooqkhan003
Created August 27, 2017 08:01
Show Gist options
  • Save farooqkhan003/0e652976c18e3f0b1e59d357b050b36f to your computer and use it in GitHub Desktop.
Save farooqkhan003/0e652976c18e3f0b1e59d357b050b36f to your computer and use it in GitHub Desktop.
<?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