Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
Last active July 8, 2022 07:14
Show Gist options
  • Star 57 You must be signed in to star a gist
  • Fork 31 You must be signed in to fork a gist
  • Save udacityandroid/332432b53a13e5c55c1c to your computer and use it in GitHub Desktop.
Save udacityandroid/332432b53a13e5c55c1c to your computer and use it in GitHub Desktop.
Android Development for Beginners : Starter Gist for XML
<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"
tools:context="com.example.android.practiceset2.MainActivity">
<TextView
android:id="@+id/display_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="45sp" />
<TextView
android:id="@+id/display_text_view_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="45sp" />
<TextView
android:id="@+id/display_text_view_3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="45sp" />
</LinearLayout>
@Samdzaka
Copy link

Samdzaka commented Jul 8, 2022

Thank you!

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