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 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/root" android:orientation="vertical" android:background="#EFEFEF" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <RelativeLayout android:background="@color/colorPrimaryDark" android:layout_width="match_parent" android:layout_height="60dp"> <LinearLayout android:id="@+id/btn_back" android:gravity="center" android:layout_width="60dp" android:layout_height="60dp"> <ImageView android:src="@drawable/arrow_left" android:layout_width="24px" android:layout_height="40px" /> </LinearLayout> <TextView android:text="로그인" style="@style/title" android:textColor="#FFF" android:layout_centerVertical="true" android:layout_centerHorizontal="true" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </RelativeLayout> </LinearLayout> | cs |
'Android' 카테고리의 다른 글
안드로이드 AsyncTask 코드 (0) | 2020.03.29 |
---|---|
안드로이드 RecyclerAdapter 코드 (0) | 2020.03.29 |
안드로이드 기본 Flagment 코드 (0) | 2020.03.29 |
안드로이드 기본 엑티비티 코드 (0) | 2020.03.29 |
build.gradle(Module: app) 세팅 (0) | 2020.03.29 |