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

ভিউগুলো তৈরী করুন

ভিউ দুইটি তৈরী করুন যা ক্রসফেড করতে চায়। নি¤েœাক্ত উদাহরণ একটি উন্নয়ন মানদন্ড তৈরী করে এবং একটি স্ক্রল করা যায় এমন টেক্সট ভিউ তৈরী করে:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <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:lineSpacingMultiplier="1.2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/lorem_ipsum"
            android:padding="16dp" />

    </ScrollView>

    <ProgressBar android:id="@+id/loading_spinner"
        style="?android:progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center" />

</FrameLayout>