আমার দেখার জন্য একটি বিন্যাস আছে -
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0px"
android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/items_header"
style="@style/Home.ListHeader" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/items_none"
android:visibility="gone"
style="@style/TextBlock"
android:paddingLeft="6px" />
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/items_list" />
</LinearLayout>
আমি যা করতে চাই তা হল এই জাতীয় লেআউট সহ আমার মূল ক্রিয়াকলাপে
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0px"
android:id="@+id/item_wrapper">
</LinearLayout>
আমি আমার ডেটা মডেলটি লুপ করতে চাই এবং প্রধান বিন্যাসে প্রথম বিন্যাসটি সমন্বিত একাধিক মতামত ইনজেকশন করতে চাই। আমি জানি যে আমি পুরোপুরি কোডের মধ্যে নিয়ন্ত্রণগুলি তৈরি করে এটি করতে পারি, তবে আমি ভাবছিলাম যে গতিশীলরূপে দৃষ্টিভঙ্গিগুলি তৈরি করার কোনও উপায় ছিল যাতে আমি কোডের মধ্যে সমস্ত কিছু না রেখেই কোনও বিন্যাস ব্যবহার করে চালিয়ে যেতে পারি।