Page 259 - 3-3
P. 259

</LinearLayout>


                사) fragment_db.xml
                <FrameLayout 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"
                    tools:context="layout.DB1"
                    android:id="@+id/frame">


                    <!-- 화면에 맞추기 위해 ScalableLayout         사용-->
                    <com.ssomai.android.scalablelayout.ScalableLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        sl:scale_base_width="75"
                        sl:scale_base_height="106">


                        <!--DB  내용을 받아올 리스트 뷰-->
                        <ListView
                            android:id="@+id/listView"
                            android:layout_width="match_parent"
                            android:layout_height="0dp"
                            android:layout_margin="5dp"
                            android:layout_weight="6"
                            sl:scale_height="60"
                            sl:scale_left="8"
                            sl:scale_top="30"
                            sl:scale_width="60"/>


                    </com.ssomai.android.scalablelayout.ScalableLayout>


                </FrameLayout>




                ※ 무인체력장 java※
                가.MooIn_Login.java
                package com.helloworld.smartschool;


                // 불러올 클래스들을 import        해준다
                import android.content.Intent;
                import android.os.StrictMode;
                import android.support.v7.app.AppCompatActivity;
                import android.os.Bundle;
                import android.view.View;


                                                          - 259 -
   254   255   256   257   258   259   260   261   262   263   264