তালিকার ভিউ আইটেমের মধ্যে স্থান তৈরি করতে আমি তালিকায় ভিউমারটি ব্যবহার করার চেষ্টা করেছি, তবে এখনও আইটেমগুলি একত্রে সংযুক্ত রয়েছে।
এটা কি সম্ভব? যদি হ্যাঁ, এটি করার একটি নির্দিষ্ট উপায় আছে?
আমার কোডটি নীচে
<LinearLayout
android:id="@+id/alarm_occurences"
android:layout_width="fill_parent"
android:orientation="vertical"
android:layout_height="fill_parent"
android:background="#EEEEFF"
xmlns:android="http://schemas.android.com/apk/res/android">
<ListView
android:id="@+id/occurences"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
আমার কাস্টম তালিকা আইটেম:
<com.android.alarm.listItems.AlarmListItem
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/alarm_item_background"
android:layout_marginBottom="10dp"
>
<CheckedTextView
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
android:textSize="20sp"
android:textStyle="bold"
android:typeface="serif"
android:padding="10dp"
/>
</com.android.alarm.listItems.AlarmListItem>
এই ক্ষেত্রে তালিকার আইটেমগুলির মধ্যে আমি কীভাবে ব্যবধান তৈরি করতে পারি?