210202
[ListView] androidX에서 ConstraintLayout에 Listview의 내용이 표시되지않는 오류 해결법 본문
Android/View
[ListView] androidX에서 ConstraintLayout에 Listview의 내용이 표시되지않는 오류 해결법
dev210202 2020. 6. 3. 22:09리스트뷰에서 tools:listitem을 사용하여 보여주고자하는 레이아웃을 설정해주면 된다.
<ListView
tools:listitem="@layout/oneline_item"
android:background="#FFFF12"
android:id="@+id/onelinelist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="parent">
</ListView>
'Android > View' 카테고리의 다른 글
[View] material BottomNavigationView에서 아이콘과 텍스트 동시에 표시하는 방법 (0) | 2022.07.15 |
---|---|
[ViewPager] ViewPager와 ToolBar를 사용할 때 AppBar가 사라지는 이유 + 해결방법 (0) | 2020.06.09 |
[View] 비트맵 버튼 정리 (0) | 2020.06.01 |
[View] 나인패치 이미지란 & 사용방법 (0) | 2020.06.01 |
[View] ConstraintLayout에서 View사이의 체인의 길이를 줄이는 법 (0) | 2020.05.29 |
Comments