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 |
Tags
- java
- 안드로이드 스튜디오
- 자바
- IOS
- 안드로이드 튜토리얼
- 안드로이드 기초
- 자바 튜토리얼
- Android Studio
- 코딩
- hongdroid
- 안드로이드
- android example
- android studio 앱 만드는 법
- 코틀린
- 앱 만드는 법
- 홍드로이드
- Android
- 홍드로이드 강의
- 개발자
- flutter
- 안드로이드 앱 만들기
- 안드로이드 코딩 기초
- 안드로이드 서비스
- Android Java
- 플러터
- 앱 만들기
- 개발강의
- 안드로이드 네비게이션 메뉴
- android tutorial
- 안드로이드 예제
Archives
- Today
- Total
홍드로이드의 야매코딩
#6 안드로이드 스튜디오 리스트뷰 (ListView) 예제 [ 홍드로이드 ] 본문
[activity_main.xml]
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 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout 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" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> <ListView android:id="@+id/list" android:layout_width="match_parent" android:layout_height="wrap_content"> </ListView> </LinearLayout> | cs |
[MainActivity.java]
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 32 33 34 | package com.example.listexample01; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; import java.util.ArrayList; import java.util.List; public class MainActivity extends AppCompatActivity { private ListView list; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); list = (ListView)findViewById(R.id.list); List<String> data = new ArrayList<>(); ArrayAdapter<String> adapter = new ArrayAdapter<>(this,android.R.layout.simple_list_item_1,data); list.setAdapter(adapter); data.add("홍드로이드"); data.add("안드로이드"); data.add("사과"); adapter.notifyDataSetChanged(); } } | cs |
'Android Java' 카테고리의 다른 글
#8 안드로이드 스튜디오 데이터 저장 ( Shared Preferences ) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
---|---|
#7 안드로이드 스튜디오 네비게이션 메뉴 ( Navigation Menu ) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
#5 안드로이드 스튜디오 폴더 패키지 구조 설명 [ 홍드로이드 ] (0) | 2019.05.21 |
#4 안드로이드 스튜디오 이미지뷰 (ImageView) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
#3 안드로이드 스튜디오 인텐트 (Intent) 예제 [ 홍드로이드 ] (0) | 2019.05.19 |
Comments