বাংলায় অ্যান্ড্রয়েড সহায়িকা - Bangla Android Guide

ভিউ তৈরী করুন

একটি লেআউট ফাইল তৈরী করুন যা আপনি পরবর্তীতে একটি ফ্রাগমেন্টের কনটেন্টের জন্য ব্যবহার করবেন। নিম্নোক্ত উদাহরণ কিছু টেক্সট প্রদর্শন করতে একটি টেক্সট ভিউ ধারন করে:

<com.example.android.animationsdemo.ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

        <TextView style="?android:textAppearanceMedium"
            android:padding="16dp"
            android:lineSpacingMultiplier="1.2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/lorem_ipsum" />

</com.example.android.animationsdemo.ScrollView>