Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created August 29, 2017 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/c41aab41a3f5c2e72a53c1c2ff3df3f8 to your computer and use it in GitHub Desktop.
Save ssaurel/c41aab41a3f5c2e72a53c1c2ff3df3f8 to your computer and use it in GitHub Desktop.
Layout of the Main Activity for the time to English Words tutorial on the SSaurel's Blog
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ssaurel.wordsclock.MainActivity">
<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Time"
android:textStyle="bold"
android:textSize="26sp"
android:layout_centerInParent="true"/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment