Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 1박2일
- kotlin
- oracle
- 안드로이드
- 코틀린
- 공부
- 리눅스
- Git
- Eclipse
- 친구랑
- 자바
- android studio
- 도쿄
- GitHub
- JavaScript
- 자바스크립트
- Java
- 별5개
- 오류해결
- 개발자
- Android
- 깃허브
- 안드로이드스튜디오
- AndroidStudio
- error
- db
- 재밌당
- 3박4일
- 오라클
- 개발
Archives
- Today
- Total
dev_eunz
[Android] 안드로이드스튜디오(Android Studio) 리스트 만들기 RecyclerView Kotlin (1) 본문
728x90
반응형
AndroidStudio 의 RecyclerView 를 사용할 일이 생겼다.
Using RecyclerView with Kotlin.
ListView에서 발전된 버전이 RecyclerView인데,
Android L (롤리팝) 출시와 함께 등장했다.
ListView의 단점인 메모리 문제, 재사용성, 커스텀하기 어려움 등을 해소한 것이 바로 이 것이다.
아래와 같이 동적으로 List를 생성한다고 하면 될 것 같다.
화면은 간단하게 아래와 같은 코드를 적당한 위치에 추가해주면 된다.
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
tools:listitem="@layout/list_layout"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
/>
※ 굵게 표시한 부분을 꼭 작성해 주어야 한다.
그렇지 않으면, List에 item이 제대로 보여지지 않는다.
※ ListView/ RecyclerView를 커스텀하고, 사용할 수 있도록 도와준다.
아래와 같이 원하는대로 List의 구성을 정해주는 레이아웃을 만들어준다.
list_layout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView android:id="@+id/titleText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp" android:text="Title"
android:textAppearance="@style/TextAppearance.AppCompat.Large" />
<TextView android:id="@+id/contents"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="contents"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
</LinearLayout>
xml 준비는 이제 끝났다.👏
다음 포스팅에서 Kotlin 코드 작성을 이어서 해보자 👊👊 !
728x90
반응형
'IT' 카테고리의 다른 글
[VirtualBox] 윈도우 가상머신 공유폴더 설정 ( 임시폴더 가는 문제 해결 ) (0) | 2021.01.22 |
---|---|
[SpringBoot] Gradle Error ( Gradle이 적용이 되지 않을 때. ) / Library Import Error ( 라이브러리 Import 안될 때. ) (0) | 2021.01.21 |
[Android] ERR_CLEARTEXT_NOT_PERMITTED 원인, 해결 (0) | 2021.01.14 |
[Visual Studio Code] VS Code 깃허브(GitHub) 연동하기 (0) | 2021.01.14 |
[Android] 안드로이드 텍스트 정렬모드, TextView 정렬 ( android:gravity 아님 ) (0) | 2021.01.13 |
Comments