Page 50 - 3-2
P. 50

}


            // MDPControl


            import java.awt.frame;


            public class MDPControl {
                    public static void main(String[] args) {
                            MDP_Project.first_frame.setVisible(true);
                            }
            }


              다 안드로이드 앱 관련 소스.


            ****************************AndroidManifest***************************
            <?xml version="1.0" encoding="utf-8"?>
            <manifest xmlns:android="http://schemas.android.com/apk/res/android"
                package="kr.icehs.intec.emart"
                android:versionCode="1"
                android:versionName="1.0" >


                <application
                    android:allowBackup="true"
                    android:icon="@mipmap/emart_logo"
                    android:label="Emart"
                    android:roundIcon="@mipmap/emart_logo"
                    android:supportsRtl="true"
                    android:theme="@style/AppTheme">


                    <activity
                        android:name=".MainActivity"
                        android:theme="@style/Theme.AppCompat">
                        <intent-filter>
                        <action android:name="android.intent.action.MAIN" />
                        <category android:name="android.intent.category.LAUNCHER" />
                    </intent-filter>


                    </activity>


                    <activity
                        android:name=".MainActivity_allproducts"
                        android:theme="@style/Theme.AppCompat"
                        >
                    </activity>


                                                         - 50 -
   45   46   47   48   49   50   51   52   53   54   55