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 Java
- 개발자
- 안드로이드 네비게이션 메뉴
- 안드로이드 코딩 기초
- flutter
- 앱 만들기
- android tutorial
- 개발강의
- Android
- 앱 만드는 법
- android studio 앱 만드는 법
- 자바 튜토리얼
- 안드로이드 예제
- 플러터
- 안드로이드
- java
- android example
- 안드로이드 서비스
- 자바
- Android Studio
- IOS
- 코틀린
- 홍드로이드 강의
- 홍드로이드
- 안드로이드 앱 만들기
- 안드로이드 기초
- 안드로이드 튜토리얼
Archives
- Today
- Total
홍드로이드의 야매코딩
#33 안드로이드 스튜디오 컨스트레인트 레이아웃 (Constraint 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 60 61 62 63 64 65 66 67 68 69 70 | <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout 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/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="홍드로이드 존잘" android:textSize="50" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/button2" /> <Button android:id="@+id/button" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="32dp" android:text="버튼클릭" app:layout_constraintEnd_toEndOf="@+id/textView" app:layout_constraintStart_toStartOf="@+id/textView" app:layout_constraintTop_toBottomOf="@+id/textView" /> <ImageView android:id="@+id/imageView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginLeft="8dp" android:layout_marginTop="8dp" android:layout_marginEnd="8dp" android:layout_marginRight="8dp" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:srcCompat="@mipmap/ic_launcher_round" /> <Button android:id="@+id/button2" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginLeft="8dp" android:layout_marginTop="100dp" android:text="Button" android:textSize="36sp" app:layout_constraintEnd_toStartOf="@+id/button3" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/imageView" /> <Button android:id="@+id/button3" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="100dp" android:layout_marginEnd="8dp" android:layout_marginRight="8dp" android:text="Button" android:textSize="36sp" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toEndOf="@+id/button2" app:layout_constraintTop_toBottomOf="@+id/imageView" tools:visibility="visible" /> </androidx.constraintlayout.widget.ConstraintLayout> | cs |
'Android Java' 카테고리의 다른 글
안드로이드 다이어리 앱 만들기 클래스 Open ! (1) | 2022.01.05 |
---|---|
#32 안드로이드 스튜디오 동영상 풀화면 재생 (Video View) 예제 [ 홍드로이드 ] (1) | 2020.06.30 |
#31 안드로이드 스튜디오 네트워크 상태 체크 (Broadcast Receiver) 예제 [ 홍드로이드 ] (0) | 2020.06.30 |
#30 안드로이드 스튜디오 랠러티브 레이아웃 (Relative Layout) 예제 [ 홍드로이드 ] (0) | 2020.06.30 |
#29 안드로이드 스튜디오 로그인&회원가입 (Login&Register) 예제 [ 홍드로이드 ] (5) | 2020.06.26 |
Comments