ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 오늘의숙제 1
    program_language 및 궁금한것/Android Studio 2018. 5. 9. 12:22

    ic_launcher_background.xml


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    package com.example.administrator.first;
     
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.util.Log;
     
    public class Main2Activity extends AppCompatActivity {
     
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main2);
            Log.d("kk","ononCreate");
        }
        protected void onResume() {
            super.onResume();
            Log.d("kk","ononResume");
        }
     
        @Override
        protected void onPause() {
            super.onPause();
            Log.d("kk","ononPause");
        }
     
        @Override
        protected void onDestroy() {
            super.onDestroy();
            Log.d("kk","onDestory");
        }
    }
     
    // 작성중이던것 !! 마무리 하기!
     
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".Main2Activity">
     
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hi Hi"
     
            />
     
        <ImageView
            android:id="@+id/imageBird"
            android:layout_width="150dp"
            android:layout_height="227dp"
            android:layout_centerHorizontal="true"
            android:src="@drawable/bird" />
     
        <EditText
            android:layout_width="150dp"
            android:layout_height="wrap_content"
            android:id="@+id/edit1"
           android:layout_below="@id/imageBird"
            android:layout_centerHorizontal="true"
            android:text="아이디"/>
     
        <EditText
            android:layout_width="150dp"
            android:layout_height="wrap_content"
            android:id="@+id/edit2"
           android:layout_below="@id/edit1"
            android:layout_centerHorizontal="true"
            android:text="비밀번호"/>
     
        <Button
            android:id="@+id/butLog"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/checkbox"
            android:layout_centerHorizontal="true"
            android:text="로그인" />
        <CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/checkbox"
            android:layout_centerHorizontal="true"
            android:text="자동로그인"
            android:layout_below="@id/edit2"
            android:checked="true"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/butTalk"
            android:layout_below="@id/butLog"
            android:layout_alignTop="@id/butLog"
            android:text="카톡로그인"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/but1"
            android:text="회원가입"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/but2"
            android:text="아이디 찾기"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/but3"
            android:text="비번 찾기"/>
     
        <ImageButton
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:id="@+id/but4"
            android:src="@drawable/back"
            android:layout_alignTop="@id/imageBird"
            android:text="뒤로가기"/>
     
     
     
    </RelativeLayout>
     
    cs


    완성!


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
     
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            />
     
        <ImageView
            android:id="@+id/imageBird"
            android:layout_width="130dp"
            android:layout_height="130dp"
            android:layout_marginTop="50dp"
            android:layout_centerHorizontal="true"
            android:src="@drawable/bird2" />
     
        <EditText
            android:layout_width="150dp"
            android:layout_height="wrap_content"
            android:id="@+id/edit1"
           android:layout_below="@id/imageBird"
            android:layout_centerHorizontal="true"
            android:text="아이디"/>
     
        <EditText
            android:layout_width="150dp"
            android:layout_height="wrap_content"
            android:id="@+id/edit2"
           android:layout_below="@id/edit1"
            android:layout_centerHorizontal="true"
            android:text="비밀번호"/>
     
        <Button
            android:id="@+id/butLog"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/checkbox"
            android:layout_centerHorizontal="true"
            android:text="로그인" />
        <CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/checkbox"
            android:layout_centerHorizontal="true"
            android:text="자동로그인"
            android:layout_below="@id/edit2"
            android:checked="true"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/butTalk"
            android:layout_below="@id/butLog"
            android:layout_centerHorizontal="true"
            android:text="카톡로그인"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/but1"
            android:layout_alignParentBottom="true"
            android:text="회원가입"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/but2"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:text="아이디 찾기"/>
     
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/but3"
            android:layout_alignParentRight="true"
            android:layout_alignParentBottom="true"
            android:layout_toRightOf="@id/but2"
            android:text="비번 찾기"/>
     
        <Button
            android:id="@+id/but4"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:background="@drawable/back"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            />
    </RelativeLayout>
    cs


    반응형

    'program_language 및 궁금한것 > Android Studio' 카테고리의 다른 글

    dp의 개념  (0) 2018.05.13
    핸들러!  (0) 2018.05.10
    공부사이트모음  (0) 2018.05.09
    LineaLayout  (0) 2018.04.13
    setVisibility //// visible, invisible  (0) 2018.04.12

    댓글

Designed by Tistory.