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
- 오픈모델
- 실무
- 앤트로픽
- codex
- 카드 없이
- AI 에이전트
- LLM
- GPT-5.6
- ChatGPT
- OpenAI
- 바이브코딩
- 노코드
- claude code
- 개발자
- 안드로이드
- MCP
- ai 뉴스
- 무료 ai
- AI 코딩
- Anthropic
- Android
- 홍드로이드
- Gemini
- 안드로이드 스튜디오
- Claude
- cursor
- 안드로이드 기초
- ai코딩
- Android Studio
- 무료 LLM
Archives
- Today
- Total
홍드로이드의 야매코딩
#28 안드로이드 스튜디오 리니어 레이아웃 ( LinearLayout ) 예제 [ 홍드로이드 ] 본문
<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 | <?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:orientation="vertical" android:background="#536DFE" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_vertical" android:orientation="horizontal"> <ImageView android:layout_width="60dp" android:layout_height="60dp" android:src="@mipmap/ic_launcher_round" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:textColor="#ffffff" android:textSize="20sp" android:textStyle="bold" android:gravity="center" android:text="홍드로이드"/> <ImageView android:layout_width="60dp" android:layout_height="60dp" android:src="@mipmap/ic_launcher_round"/> </LinearLayout> </LinearLayout> | cs |
'Android Java' 카테고리의 다른 글
| #30 안드로이드 스튜디오 랠러티브 레이아웃 (Relative Layout) 예제 [ 홍드로이드 ] (0) | 2020.06.30 |
|---|---|
| #29 안드로이드 스튜디오 로그인&회원가입 (Login&Register) 예제 [ 홍드로이드 ] (5) | 2020.06.26 |
| #27 안드로이드 스튜디오 버튼 클릭 효과 만들기 (Button Selector) 예제 [ 홍드로이드 ] (2) | 2019.06.08 |
| #26 안드로이드 스튜디오 다음 화면으로부터 값 전달받기 (StartActivityForResult) 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
| #25 안드로이드 스튜디오 SNS 앱 만들기 1 (인스타그램 하단바) [ 홍드로이드 ] (1) | 2019.06.08 |
Comments