タグ付けされた質問 「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
Android ListView Divider
私はこのコードを持っています: <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> 仕切りが見えません。


11
水平のLinearLayoutに(垂直の)ディバイダーを追加する方法は?
水平線形レイアウトに仕切りを追加しようとしていますが、どこにも表示されません。仕切りは表示されません。私はAndroidの初心者です。 これは私のレイアウト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" 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>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.