User Interface for the Anagram Game Tut on SSaurel's Blog
This file contains 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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:paddingBottom="@dimen/activity_vertical_margin" | |
android:paddingLeft="@dimen/activity_horizontal_margin" | |
android:paddingRight="@dimen/activity_horizontal_margin" | |
android:paddingTop="@dimen/activity_vertical_margin" | |
tools:context=".MainActivity" > | |
<TextView | |
android:id="@+id/wordTv" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_centerHorizontal="true" | |
android:layout_marginTop="50dp" | |
android:text="Word To Find" | |
android:textSize="22sp" | |
android:textStyle="bold" /> | |
<EditText | |
android:id="@+id/wordEnteredEt" | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:layout_below="@id/wordTv" | |
android:layout_centerHorizontal="true" | |
android:layout_marginTop="20dp" | |
android:inputType="textCapCharacters" /> | |
<Button | |
android:id="@+id/validate" | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:layout_below="@id/wordEnteredTv" | |
android:layout_centerHorizontal="true" | |
android:layout_marginTop="60dp" | |
android:text="Validate" /> | |
<Button | |
android:id="@+id/newGame" | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:layout_below="@id/validate" | |
android:layout_centerHorizontal="true" | |
android:layout_marginTop="25dp" | |
android:text="New Game" /> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment