Skip to content

Instantly share code, notes, and snippets.

@decriptor
Created September 21, 2016 20:56
Show Gist options
  • Save decriptor/c9a7b02ffb0e3163ec2846f296bb51e9 to your computer and use it in GitHub Desktop.
Save decriptor/c9a7b02ffb0e3163ec2846f296bb51e9 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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout />
<Button
android:id="@+id/myButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:text="Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/button1" />
<TextView
android:text="SomeRandomText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView1" />
<ListView
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listView1" />
<EditText />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment