«divider» 태그된 질문

30
RecyclerView에서 항목 사이에 칸막이와 공백을 추가하는 방법은 무엇입니까?
다음은 divider 및 dividerHeight 매개 변수를 ListView사용하여 클래스 에서 이전에 수행 한 방법의 예입니다 . <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 디바이더
이 코드가 있습니다. <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
수평 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.