반응형

1. 시험환경

    ˙ Android Studio

    ˙ AVD(Android Virtual Device, 안드로이드 가상 디바이스)

 

2. 목적

    ˙ Android Studio에서 제공하는 AVD를 최초 실행 및 동작하는 방법을 학습한다.

 

3. 적용

    ① Android Studio → More Actions → Virtual Device Manager를 클릭한다.

 

    ② Default Device가 생성되어 있지만, 신규 디바이스를 만들기 위해 "Create device" 버튼을 클릭한다.

 

    ③ 가상 Device를 선택한다.

 

    가상 Device에 설치할 Android OS 이미지를 선택한다.

        - 기존에 다운받은 이미지가 아닌 경우, "Next" 버튼이 비활성화되어 있고 다운로드 아이콘을 클릭해야 한다.

 

 

    이미지 다운로드가 완료되면 "Next" 버튼이 활성화된다.

 

    ⑥ 디바이스 설정 후 "Finish" 버튼을 클릭한다.

 

4. 결과

    ˙ PC 환경에서 개발한 앱을 테스트할 수 있는 가상 디바이스 장치가 생성되었다.

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다 ※

반응형
반응형

1. 시험환경

- Android Studio v4.2

- JAVA

 

2. 목적

- RadioButton, CheckBox 위젯의 기본 사용법을 학습한다.

 

3. 적용

① RadioGroup안에 RadioButton 3개를 설정하고, 주요 속성을 확인한다.

    - RadioGroup 안에 포함된 RadioButton 중 하나만 선택된다.

    - RadioGroup을 사용하지 않으면 클릭한 RadioButon이 모두 선택된다.

<RadioGroup
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <RadioButton
        android:id="@+id/rdo1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="선택 버튼 1"
        android:textSize="24sp"
        android:textColor="#aabbcc"
        android:textStyle="bold"
        android:layout_margin="10dp" />

    <RadioButton
        android:id="@+id/rdo2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="선택 버튼 2"
        android:textSize="24sp"
        android:textColor="#ccddee"
        android:textStyle="bold"
        android:layout_margin="10dp" />

    <RadioButton
        android:id="@+id/rdo3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="선택 버튼 3"
        android:textSize="24sp"
        android:textColor="#eeaaee"
        android:textStyle="bold"
        android:layout_margin="10dp" />
</RadioGroup>

 

② CheckBox를 설정하고, 주요 속성을 확인한다.

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="체크 박스"
    android:textSize="20sp" />

 

4. 결과

    - 설정한 RadioButton과 CheckBox를 확인한다.

실행 결과 확인

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.

반응형

'안드로이드' 카테고리의 다른 글

AVD(Android Virtual Device) 사용  (0) 2022.12.09
Android Studio 설치  (0) 2022.12.09
[widget] EditText 기본 사용법  (0) 2021.07.22
[widget] TextView 기본 사용법  (0) 2021.07.22
[Layout] TableLayout 예제  (0) 2021.07.21
반응형

1. 시험환경

- Android Studio v4.2

- JAVA

 

2. 목적

- EditText 위젯의 기본 사용법을 학습한다.

 

3. 적용

inputType이 다른 EditText 위젯 3개를 생성하였다.

<?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">
    <EditText
        android:id="@+id/editTxtId"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input your id"
        android:inputType="text"
        android:textSize="24sp" />
    <EditText
        android:id="@+id/editTxtPw"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input your password"
        android:inputType="numberPassword"
        android:textSize="24sp" />
    <EditText
        android:id="@+id/editTxtEmail"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input your email"
        android:inputType="textEmailAddress"
        android:textSize="24sp" />
</LinearLayout>

 

4. 결과

- EditText에 설정된 inputType에 따라 나타나는 키패드를 확인한다.

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.

반응형

'안드로이드' 카테고리의 다른 글

Android Studio 설치  (0) 2022.12.09
[widget] RadioButton, CheckBox 기본 사용법  (0) 2021.07.22
[widget] TextView 기본 사용법  (0) 2021.07.22
[Layout] TableLayout 예제  (0) 2021.07.21
[Layout] FrameLayout에서 뷰 전환  (0) 2021.07.21
반응형

1. 시험환경

- Android Studio v4.2

- JAVA

 

2. 목적

- TextView 위젯의 기본 사용법을 학습한다.

 

3. 적용

① App에서 사용할 문자열을 관리하는 파일에서 문자열을 추가한다.

   - 파일위치 : app → res → values → strings.xml

문자열 관리 파일

 

② TextView 위젯을 추가하고 속성값을 설정한다.

    - text : "직접 문자열 입력" or "strings.xml에서 설정한 string 참조"

    - textSize : 단말 해상도에 따라 일정한 크기로 표시되는 sp 단위 입력

    - textStyle : 여러 style 동시 적용시 "|" 사용

    - typeface : 글자 형식 지정

    - ellipsize : "marquee"로 설정하면 회전하는 자막 효과 적용

    - marqueeRepeatLimit : 최대 회전수

    - singleLine : 텍스트의 길이가 길어도 한줄에 표시

    - focusable : "marquee" 적용을 위해 true로 설정

TextView 속성 설정

 

③ "marquee"로 설정하여 자막효과를 주기 위해 setSelected() 속성을 true로 설정한다.

TextView의 Selected 속성 설정

 

4. 결과

- 속성값이 적용된 TextView 결과 확인

실행 결과

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.

반응형
반응형

1. 시험환경

- Android Studio v4.2

- JAVA

 

2. 목적

- TableLayout과 TableRow를 이용하여 Widget을 배치하는 방법을 학습한다.

 

3. 적용

① TableLayout과 TableRow를 이용해서 컴포넌트 배치한다.

Comopnent Tree 구조

 

② 각 TableRow의 하위 Component를 배치한다.

    - android:layout_span 속성 : HTML Table의 colspan과 비슷한 속성

 

 

 

4. 결과

- TableLayout 결과 화면

TableLayout 결과

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.

반응형

+ Recent posts