Page 626 - MDP2020-1
P. 626

|    인천전자마이스터고등학교  ·············································································································
            620


            activity_main.xml
            <?xml  version="1.0"  encoding="utf-8"?>
            <LinearLayout  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"

                    android:orientation="vertical"
                    tools:context=".MainActivity">


                    <WebView
                            android:id="@+id/webView"
                            android:layout_width="match_parent"

                            android:layout_height="0dp"
                            android:layout_weight="4"> //비율로  뷰  크기  조정


                    </WebView>



                    <LinearLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:orientation="vertical">



                            <Button
                                    android:id="@+id/button"
                                    android:layout_width="match_parent"
                                    android:layout_height="wrap_content"
                                    android:text="이전"

                                    android:layout_weight="1"/>  //비율로  뷰  크기  조정
                    </LinearLayout>


            </LinearLayout>



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



                    <application
                            android:allowBackup="true"
   621   622   623   624   625   626   627   628   629   630   631