이번 시간에는 코틀린에서 배열 만드는 방법에 대하여 알아보겠습니다.
- 설명 -
배열 값을 보여주기 위한 텍스트뷰입니다.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="30sp"
android:textStyle="bold"/>
</RelativeLayout>
- 설명 -
1. 배열 생성
var 변수명 : Array<타입> = arrayOf( 값 1, 값 2, 값 3....);
예: var colors : Array <String> = arrayOf("Red", "Blue", "Green");
2. 배열 가져오기
변수명[값 위치];
예: colors[0];
3. 값 변경하기
변수명[값 위치] = 값;
예) colors[1] = "Black";
4. 배열 크기 가져오기
변수명.size
예) colors.size
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
var textView : TextView = findViewById(R.id.textView);
var colors : Array<String> = arrayOf("Red", "Blue", "Green");
//배열 값 가져오기
textView.append("1번째" + colors[0] + "\n");
textView.append("2번째" + colors[1] + "\n");
textView.append("3번째" + colors[2] + "\n");
//값 변경
colors[1] = "Black";
//변경된 값 가져오기기
textView.append( "2번째 "+ colors[1] + "\n");
//배열 크기
textView.append( "크기: "+ colors.size + "\n");
}
}
2022.05.14 - [안드로이드] - [안드로이드] Database Room 사용법 part1 - Room 설정
2022.05.07 - [안드로이드] - [안드로이드] HTTP 통신 Volley 사용법 part1 - 간단한 요청 및 응답
2022.04.19 - [안드로이드] - [안드로이드] 커스텀 달력 만드는 방법 part1 화면 구성
[안드로이드 코틀린] 반복문 while, do while 만드는 방법 (0) | 2022.05.22 |
---|---|
[안드로이드 코틀린] 반복문 For 만드는 다양한 방법 (0) | 2022.05.21 |
[안드로이드 코틀린] 변수 생성 및 변수 타입 만드는 방법 (0) | 2022.05.19 |
[안드로이드] Database Room 사용법 part5 - 삭제 (0) | 2022.05.18 |
[안드로이드] Database Room 사용법 part4 - 수정 (0) | 2022.05.17 |
댓글 영역