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
- 카드 없이
- AI 에이전트
- AI 코딩
- 오픈모델
- ai코딩
- Android Studio
- 개발자
- OpenAI
- 무료 ai
- Anthropic
- 안드로이드 스튜디오
- 노코드
- 실무
- 무료 LLM
- LLM
- MCP
- ChatGPT
- Android
- 앤트로픽
- 안드로이드 기초
- claude code
- 홍드로이드
- codex
- 안드로이드
- Gemini
- ai 뉴스
- cursor
- 바이브코딩
- GPT-5.6
- Claude
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