Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
Created May 25, 2015 23:55
Show Gist options
  • Star 27 You must be signed in to star a gist
  • Fork 21 You must be signed in to fork a gist
  • Save udacityandroid/462d130752ef49bbab92 to your computer and use it in GitHub Desktop.
Save udacityandroid/462d130752ef49bbab92 to your computer and use it in GitHub Desktop.
Android Development for Beginners : Court Counter - The Stages
<LinearLayout 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:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="4dp"
android:text="Team A" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="4dp"
android:text="0" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="+3 Points" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="+2 Points" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="Free throw" />
</LinearLayout>
@LaszloLajosT
Copy link

Hi Ladies and Gentlemen!

I started to learn how to use Github.
And because of that I also tried to save the beginning of the project(Set up)
Here is the link where you can dowload the whole project and open it in Android Studio if you have difficulties to create(Or searching the xml file only):
https://github.com/LaszloLajosT/CourtCounter.git

@MarvUkazu
Copy link

layout_width for the text views and buttons should be match_parent
then give the text views a gravity (not layout_gravity) of center_horizontal.

@ravinder5341
Copy link

I have a issue using just gravity, according to the code above, I've used this attribute android:layout_gravity="center_horizontal".

you can use this as an alternative

android:textAlignment="center"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment