Page 251 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 251

*  App화면  소스  (btn_style4.xml)

            <?xml  version="1.0"  encoding="utf-8"?>
            <selector  xmlns:android="http://schemas.android.com/apk/res/android">
                 <item>
                       <shape android:shape="rectangle">

                            <stroke android:width="3dp"  android:color="#669dd6" />
                            <corners  android:bottomRightRadius="20dp"
                                 android:bottomLeftRadius="20dp"
                                 android:topLeftRadius="20dp"
                                 android:topRightRadius="20dp"/>

                       </shape>
                 </item>
            </selector>


            *  App화면  소스  (text_style.xml)

            <?xml  version="1.0"  encoding="utf-8"?>
            <selector  xmlns:android="http://schemas.android.com/apk/res/android">
                 <item>


                       <shape android:shape="rectangle">

                            <stroke android:width="4dp"  android:color="#93cd73" />
                            <corners  android:bottomRightRadius="7dp"
                                 android:bottomLeftRadius="7dp"
                                 android:topLeftRadius="7dp"
                                 android:topRightRadius="7dp"/>

                       </shape>
                 </item>
            </selector>


            *  App화면  소스  (Androidmanifest.xml)

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


                 <application

                       android:allowBackup="true"
                       android:icon="@mipmap/ic_launcher"




                                                         -  244  -
   246   247   248   249   250   251   252   253   254   255   256