Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created September 7, 2023 01:19
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 codeforfun-jp/90b436ba7d82e98f85094482e587d5c3 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/90b436ba7d82e98f85094482e587d5c3 to your computer and use it in GitHub Desktop.
How to Use View Binding with Java & Kotlin - 2
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context=".MainActivity"
android:orientation="vertical"
android:gravity="center">
<TextView
android:id="@+id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="24sp"
android:layout_marginBottom="40dp"/>
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment