1. Spinner
1) 기능
- 드롭다운 옵션은 Android Studio에서 Spinner라는 이름으로 구현
2) 빌드 프로세스
- (res > value > new > value resource file) array 파일 생성 > Layout에서 spinner 레이아웃과 textview 레이아웃 설정 > MainActivity에서 기능 선언(setOnItemSelectedListener를 오버라이드)
3) 코드 예제
- (res > value > new > value resource file) array 파일 생성
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="test">
<item>Loquens</item>
<item>Ludens</item>
<item>Sapiens</item>
</string-array>
</resources>
- Layout에서 spinner 레이아웃과 textview 레이아웃 설정
<?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"
tools:context=".MainActivity">
<Spinner
android:id="@+id/spinner"
android:layout_width="150dp"
android:layout_height="40dp"
android:entries="@array/test">
</Spinner>
<TextView
android:id="@+id/tv_result"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="드롭다운 결과"/>
</LinearLayout>
- MainActivity에서 기능 선언(setOnItemSelectedListener를 오버라이드)
package com.example.spinnerexample;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Spinner;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private Spinner spinner;
private TextView tv_result;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
spinner = (Spinner) findViewById(R.id.spinner);
tv_result = (TextView) findViewById(R.id.tv_result);
spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
tv_result.setText(parent.getItemAtPosition(position).toString());
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
}
}
'Development > Android Studio' 카테고리의 다른 글
(Android Studio) Chapter13. ConstraintLayout, BottomNavigation (0) | 2023.03.11 |
---|---|
(Android Studio) Chapter12. github (loading) (0) | 2023.03.05 |
(Android Studio) Chapter10. FCM Push Message (0) | 2023.03.05 |
(Android Studio) Chapter9. Service(Background Music play) (0) | 2023.03.04 |
(Android Studio) Chapter8. Dialog pop-up (0) | 2023.03.04 |