«divider» etiketlenmiş sorular

30
RecyclerView'da öğeler arasına bölücüler ve boşluklar nasıl eklenir?
Bu, daha önce ListViewsınıfta divider ve dividerHeight parametrelerini kullanarak nasıl yapılabileceğinin bir örneğidir : <ListView android:id="@+id/activity_home_list_view" android:layout_width="match_parent" android:layout_height="match_parent" android:divider="@android:color/transparent" android:dividerHeight="8dp"/> Ancak, RecyclerViewsınıfta böyle bir olasılık görmüyorum . <android.support.v7.widget.RecyclerView android:id="@+id/activity_home_recycler_view" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="vertical"/> Bu durumda, kenar boşluklarını tanımlamak ve / veya doğrudan bir liste öğesinin düzenine özel bir bölücü görünümü eklemek …

12
Android ListView Bölücü
Bu koda sahibim: <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cashItemsList" android:cacheColorHint="#00000000" android:divider="@drawable/list_divider"></ListView> nerede @drawable/list_divider: <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> <stroke android:width="1dp" android:color="#8F8F8F" android:dashWidth="1dp" android:dashGap="1dp" /> </shape> ama herhangi bir bölen göremiyorum.


11
Yatay bir LinearLayout'a (dikey) bölücü nasıl eklenir?
Yatay doğrusal düzene bir bölücü eklemeye çalışıyorum ama hiçbir yere varamıyorum. Bölücü sadece görünmüyor. Android ile tamamen acemiyim. Bu benim düzen XML'im: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/llTopBar" android:orientation="horizontal" android:divider="#00ff00" android:dividerPadding="22dip" android:showDividers="middle" > <Button android:layout_width="wrap_content" android:layout_height="match_parent" android:text="asdf" /> <Button android:layout_width="wrap_content" android:layout_height="match_parent" android:text="asdf" /> </LinearLayout> </RelativeLayout>
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.