You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
<?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:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/textView1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="65dp"
|
|
android:layout_marginTop="40dp"
|
|
android:text="Hom Many Hops?"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textSize="26dp" />
|
|
|
|
<Button
|
|
android:id="@+id/hop2"
|
|
android:layout_width="180dp"
|
|
android:layout_height="60dp"
|
|
android:layout_marginTop="90dp"
|
|
android:layout_marginLeft="70dp"
|
|
android:text="2 hops"
|
|
android:textColor="@drawable/text_style"
|
|
android:background="@drawable/button_style"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/hop3"
|
|
android:layout_width="180dp"
|
|
android:layout_height="60dp"
|
|
android:layout_marginTop="40dp"
|
|
android:layout_marginLeft="70dp"
|
|
android:text="3 hops"
|
|
android:textColor="@drawable/text_style"
|
|
android:background="@drawable/button_style"
|
|
/>
|
|
|
|
</LinearLayout>
|