Page 227 - 3-3
P. 227

'50m  달리기 타이머 동작
                  Private Sub RTimer_Tick(sender As Object, e As EventArgs) Handles RTimer.Tick
                      ' 타임스팬 객체 생성
                      Dim timespan As TimeSpan


                      '50m  달리기 스탑워치 사용 허용
                      timespan = Rstopwatch.Elapsed


                      ' 초 데이터 값에 스톱워치 초 값 저장
                      Rsec = timespan.Seconds
                      ' 밀리초 데이터 값에 스톱워치 밀리초/10               값 저장
                      Rmsec = timespan.Milliseconds / 10


                      ' 라벨에 시간 출력
                      lblRecordRun.Text = Rsec & "." & IIf(Rmsec <= 9, "0" & Rmsec, Rmsec)
                  End Sub


                  'Error  텍스트박스 내용 지우기
                  Private   Sub    btnRtbReset_Click(sender   As    Object,   e   As    EventArgs)    Handles
              btnRtbReset.Click
                      ' 에러 텍스트 박스 내용 지우기
                      rtbError.Text = ""
                  End Sub
              End Class


              다. Android
                ※ 스마트스쿨 XML※
                이번 프로젝트를 진행하면서 기능반이 만든 세 가지 서버 중 우리 작품은 스마트오피스 스마트교실.
              과 함께 학교 서버에 속해있다 그래서 스마트스쿨 서버의 데이터베이스를 열람하고 수정하기 위한‘  ’  .                      ,
              통합 어플리케이션을 만들었다.


                가. activity_splash.xml
                <?xml version="1.0" encoding="utf-8"?>
                <RelativeLayout 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="com.helloworld.smartschool.SplashActivity"
                    android:background="#02BEC4">


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


                                                          - 227 -
   222   223   224   225   226   227   228   229   230   231   232