Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 홍드로이드
- hongdroid
- Android Studio
- 안드로이드 서비스
- 안드로이드
- Android Java
- 개발자
- android studio 앱 만드는 법
- 안드로이드 앱 만들기
- 코틀린
- 코딩
- 앱 만드는 법
- 안드로이드 기초
- 안드로이드 튜토리얼
- java
- 홍드로이드 강의
- 안드로이드 네비게이션 메뉴
- 안드로이드 예제
- IOS
- 자바 튜토리얼
- Android
- android example
- 안드로이드 코딩 기초
- 안드로이드 스튜디오
- 개발강의
- flutter
- 자바
- android tutorial
- 플러터
- 앱 만들기
Archives
- Today
- Total
홍드로이드의 야매코딩
#30 안드로이드 스튜디오 랠러티브 레이아웃 (Relative Layout) 예제 [ 홍드로이드 ] 본문
<activity_main.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 | <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" tools:context=".MainActivity"> <TextView android:id="@+id/tv_1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20sp" android:textColor="#3267FF" android:text="홍드로이드 덥다."/> <TextView android:id="@+id/tv_2" android:layout_centerInParent="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="칼퇴하고싶다"/> <TextView android:id="@+id/tv_3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@+id/tv_2" android:layout_centerInParent="true" android:textSize="20sp" android:textColor="#3267FF" android:text="홍드로이드 덥다."/> <TextView android:id="@+id/tv_4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:textSize="20sp" android:textColor="#3267FF" android:text="홍드로이드 덥다."/> <TextView android:id="@+id/tv_5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:textSize="20sp" android:textColor="#3267FF" android:text="홍드로이드 덥다."/> </RelativeLayout> | cs |
'Android Java' 카테고리의 다른 글
#32 안드로이드 스튜디오 동영상 풀화면 재생 (Video View) 예제 [ 홍드로이드 ] (1) | 2020.06.30 |
---|---|
#31 안드로이드 스튜디오 네트워크 상태 체크 (Broadcast Receiver) 예제 [ 홍드로이드 ] (0) | 2020.06.30 |
#29 안드로이드 스튜디오 로그인&회원가입 (Login&Register) 예제 [ 홍드로이드 ] (5) | 2020.06.26 |
#28 안드로이드 스튜디오 리니어 레이아웃 ( LinearLayout ) 예제 [ 홍드로이드 ] (1) | 2020.06.26 |
#27 안드로이드 스튜디오 버튼 클릭 효과 만들기 (Button Selector) 예제 [ 홍드로이드 ] (2) | 2019.06.08 |
Comments