Page 815 - 3-3
P. 815

Ⅲ  .  소프트웨어
                 8.  소프트웨어 대한 소개하기
                 -  알고리즘 순서도































                 소스코드(Xml)


                 <AndroidMainifest.xml> (  액티비티 설정 )


               <?xml version="1.0" encoding="utf-8"?>
               <manifest xmlns:android="http://schemas.android.com/apk/res/android"
                   package="com.helloworld.smartschool">


                   <!--  인터넷 연결 설정 ㅡㅡ         >
                   <uses-permission android:name="android.permission.INTERNET" />
                   <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
                   <supports-screens
                       android:anyDensity="true"
                       android:largeScreens="true"
                       android:normalScreens="true"
                       android:smallScreens="true" />
                   <application
                       android:allowBackup="true“
                        android:icon="@mipmap/school"
                       android:label=" 스마트 스쿨" <!--     어플 이름 ㅡㅡ      >
                       android:roundIcon="@mipmap/ic_launcher_round"
                       android:supportsRtl="true"
                       android:theme="@style/Main">
                       <activity
                           android:name=".SplashActivity" <!--  로딩 ㅡㅡ    >
                           android:screenOrientation="portrait"



                                                          - 815 -
   810   811   812   813   814   815   816   817   818   819   820