divider पर टैग किए गए जवाब

30
RecyclerView में आइटम के बीच डिवाइडर और रिक्त स्थान कैसे जोड़ें?
इस तरह उस में पहले से किया जा सकता था का एक उदाहरण है ListViewवर्ग, का उपयोग कर विभक्त और dividerHeight पैरामीटर: <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"/> हालाँकि, मुझे RecyclerViewकक्षा में ऐसी संभावना नहीं दिख रही है । <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"/> उस स्थिति में, क्या मार्जिन को …

12
एंड्रॉइड लिस्ट व्यू डिवाइडर
मेरे पास यह कोड है: <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cashItemsList" android:cacheColorHint="#00000000" android:divider="@drawable/list_divider"></ListView> कहाँ @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> लेकिन मैं कोई विभक्त नहीं देख सकता।

5
Android ListView का निचला डिवाइडर निकालें
मेरी एक निश्चित ऊंचाई है ListView। इसमें सूची आइटम के बीच विभक्त है, लेकिन यह अंतिम सूची आइटम के बाद डिवाइडर भी प्रदर्शित करता है। क्या अंतिम आइटम के बाद डिवाइडर प्रदर्शित नहीं करने का कोई तरीका है ListView?

11
क्षैतिज रेखीय लयआउट के लिए (ऊर्ध्वाधर) विभक्त कैसे जोड़ें?
मैं एक क्षैतिज रैखिक लेआउट में एक विभक्त जोड़ने की कोशिश कर रहा हूँ, लेकिन कहीं नहीं मिल रहा है। विभक्त बस नहीं दिखाता है। मैं एंड्रॉइड के साथ कुल नौसिखिया हूं। यह मेरा लेआउट XML है: <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" …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.