Page 247 - 3-3
P. 247
※ 무인체력장 XML※
무인체력장 어플리케이션은 단순히 기록 열람을 목적으로 만들었다 그렇기 때문에 서버의 데이터베이.
스에 담겨진 내용이 웹에서 php 파일로 파싱하면 안드로이드에서 JSON 을 이용해서 파싱하여 리스트뷰
에 띄우는 구조이다.
가. mooin_login.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:sl="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#A1E7c6"
tools:context="com.helloworld.smartschool.MooIn_Login"
android:weightSum="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<!-- 화면 크기에 맞출 수 있도록 ScalableLayout 사용-->
<com.ssomai.android.scalablelayout.ScalableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
sl:scale_base_height="700"
sl:scale_base_width="1080">
<!-- 이미지 사용-->
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
sl:scale_height="150"
sl:scale_left="210"
sl:scale_top="360"
sl:scale_width="130"
sl:srcCompat="@drawable/dumbbell1" />
<!-- 제목 출력-->
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" 무인체력장"
- 247 -