আমি DataBinding
অ্যান্ড্রয়েড বিন্যাসে ভিউ সেট করার জন্য এপিআই ব্যবহার করছি। এখানে আমার লেআউট।
বিন্যাস.এক্সএমএল
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="user" type="testing.sampleapp.com.sampleapp.User"/>
</data>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{ "Hello " + user.firstName}"/>
</LinearLayout>
আমি টেক্সটভিউটি হ্যালো ব্যবহারকারী নামটি প্রদর্শন করতে চাই । ডেটা বাইন্ডিং এপিআই ব্যবহার করে এটি কীভাবে অর্জন করা যায়।