Skip to content

Instantly share code, notes, and snippets.

@pauloaapereira
Created July 23, 2021 15:34
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 pauloaapereira/dc7330408341927389e2aebc3417bc42 to your computer and use it in GitHub Desktop.
Save pauloaapereira/dc7330408341927389e2aebc3417bc42 to your computer and use it in GitHub Desktop.
Declarative UI Brief Analysis
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text1"
android:textColor="@color/black"
android:textSize="21sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text2"
android:textColor="@color/black"
android:textSize="21sp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment