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
- 원스휴먼 레시피 파밍
- 믹스커피
- 원스휴먼 스타크롬
- 믹스커피추천
- 비상계엄령
- 홈플러스
- 원스휴먼 사료
- 시그니처
- 2차 비상계엄
- 원스휴먼 먹이
- 원스휴먼 레시피
- 원스휴먼 황금양
- 레시피 파밍
- 홈플러스 시그니처 모카골드믹스커피
- 원달러환율
- 원스휴먼 쿠폰
- 2차계엄
- 원스휴먼 황금양 구하기
- 원스휴먼 요리
- 계엄령
- 국방부
- 유광버섯 통조림
- 커피추천
- 원스휴먼 황금양털파밍
- 일론머스크
- 1203계엄령
- 윤석열
- 원스휴먼 동물
- 계엄령 외신반응
Archives
- Today
- Total
0101011001010111
android.R.layout.simple_list_item_1 본문
728x90
반응형
android.R.layout.simple_list_item_1
package com.example.simplelistviewtest
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.ArrayAdapter
import com.example.simplelistviewtest.databinding.ActivityMainBinding
class MainActivity : AppCompatActivity() {
private lateinit var binding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
//데이터 원본 (대충 막 작성했음)
val items = arrayOf<String>("item1","item2","item3","item1","item2","item3","item1","item2","item3","item1","item2","item3","item1","item2","item3","item1","item2","item3","item1","item2","item3")
//어댑터 준비! 이번에는 ArrayAdapter를 써볼것이다!
val adapter = ArrayAdapter(this, android.R.layout.simple_list_item_1, items)
//어댑터 연결해주기
binding.myListView.adapter = adapter
}
}
xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ListView
android:id="@+id/myListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
728x90
반응형
'Kotlin > [스스로]Kotlin&안드로이드' 카테고리의 다른 글
RecyclerView에 대해 새로 알게 된 사실, (0) | 2023.08.28 |
---|---|
저번 과제 login 페이지 만들기 다시하기 (0) | 2023.08.28 |
안드로이드 텍스트 여러줄 입력하기 (0) | 2023.08.21 |
안드로이드 : ConstraintLayout의 weight 개념. 정리 (3) | 2023.08.21 |
Android_Constraint Layout 방향 (0) | 2023.08.15 |