Page 97 - 2020학년도 MDP과제발표회 자료집 (통신과) (3)
P. 97

2)  안드로이드  Activity  main
            <?xml  version="1.0"  encoding="utf-8"?>

            <LinearLayout
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    xmlns:tools="http://schemas.android.com/tools"
                    xmlns:app="http://schemas.android.com/apk/res-auto"
                    android:id="@+id/activity_main"

                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:paddingBottom="10dp"
                    android:paddingLeft="20dp"
                    android:background="@drawable/tree"

                    android:orientation="vertical"
                    android:paddingRight="@dimen/activity_horizontal_margin"
                    tools:context="com.example.user.mdp.MainActivity">


                    <ImageButton

                            android:id="@+id/star"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="100dp"
                            android:layout_marginTop="10dp"

                            android:background="@drawable/star"/>


                    <LinearLayout
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"

                            android:orientation="horizontal"
                            android:layout_marginLeft="133dp"
                            android:weightSum="1">


                            <ImageButton

                                    android:id="@+id/purple"
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:background="@drawable/bulb"/>



                    </LinearLayout>




                                                         -  100  -
   92   93   94   95   96   97   98   99   100   101   102