SmartHome 어플 제작 - 무드등 탭
** 첫번째 이미지 (activity_alarm.xml)
<?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"
android:padding="10dp"
android:background="#ffffff"
tools:context="com.example.dmbtv.smarthome.ReserveActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="5"
android:orientation="vertical">
<TimePicker
android:id="@+id/timePicker"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:timePickerMode="spinner" />
</LinearLayout>
<RelativeLayout
android:id="@+id/function"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2">
<TextView
android:id="@+id/function_text"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical"
android:text="기능"
android:textSize="20dp"
android:textStyle="bold" />
<Spinner
android:id="@+id/function_spinner"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/on_off"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2">
<TextView
android:id="@+id/onoffBtn"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical"
android:text="예약 on/off"
android:textSize="20dp"
android:textStyle="bold" />
<Switch
android:id="@+id/onoffSwitch"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical" />
</RelativeLayout>
<Button
android:id="@+id/alarmDelete"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="예약 삭제"/>
</LinearLayout>
** 두번째 이미지 (activity_reserve.xml)
<?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"
android:padding="10dp"
android:background="#ffffff"
tools:context="com.example.dmbtv.smarthome.ReserveActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="5"
android:orientation="vertical">
<TimePicker
android:id="@+id/timePicker"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:timePickerMode="spinner" />
</LinearLayout>
<RelativeLayout
android:id="@+id/function"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2">
<TextView
android:id="@+id/function_text"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical"
android:text="기능"
android:textSize="20dp"
android:textStyle="bold" />
<Spinner
android:id="@+id/function_spinner"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/on_off"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2">
<TextView
android:id="@+id/onoffBtn"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical"
android:text="예약 on/off"
android:textSize="20dp"
android:textStyle="bold" />
<Switch
android:id="@+id/onoffSwitch"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical" />
</RelativeLayout>
<Button
android:id="@+id/alarmDelete"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="예약 삭제"/>
</LinearLayout>
이어서 추가로 새로운 기능을 포스팅하도록 하겠습니다~
'Android' 카테고리의 다른 글
안드로이드 ColorPicker 라이브러리 색상 선택 (0) | 2017.09.25 |
---|---|
안드로이드 스튜디오 - 라이브러리 추가(import) (0) | 2017.09.22 |
안드로이드 - 어플 초기화면 만들기 (0) | 2017.08.30 |
안드로이드 - 초간단 메모장 만들기3(옵션 추가) (0) | 2017.08.29 |
안드로이드 -초간단 메모장 만들기2 (파일변경) (1) | 2017.08.28 |