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
- 홈플러스 시그니처 모카골드믹스커피
- 비상계엄령
- 레시피 파밍
- 원스휴먼 황금양
- 원스휴먼 먹이
- 2차 비상계엄
- 1203계엄령
- 원스휴먼 동물
- 믹스커피추천
- 원스휴먼 황금양털파밍
- 커피추천
- 시그니처
- 원스휴먼 레시피
- 계엄령
- 믹스커피
- 윤석열
- 원스휴먼 요리
- 원스휴먼 레시피 파밍
- 유광버섯 통조림
- 원스휴먼 사료
- 원스휴먼 스타크롬
- 홈플러스
- 원스휴먼 황금양 구하기
- 계엄령 외신반응
- 원달러환율
- 일론머스크
- 원스휴먼 쿠폰
- 2차계엄
- 국방부
Archives
- Today
- Total
0101011001010111
정예반 숙제! 8.23일! 본문
728x90
반응형
만들어보기 !
쟈란 - 만듬.
<?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">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/imageView"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginStart="30dp"
android:layout_marginTop="30dp"
android:src="@drawable/jinju1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/id_user"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:text="황진주"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="@+id/imageView"
app:layout_constraintStart_toEndOf="@+id/imageView"
app:layout_constraintTop_toTopOf="@+id/imageView" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="15dp"
android:text="2시간전"
android:textColor="#AEAEAE"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="@+id/id_user"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/id_user" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="스파르타 코딩클럽 내일배움캠프에 오신 여러분 환영합니다.\n 오늘부터 빡코딩 쌉가눙!!!!!!!"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="200dp"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView3"
tools:srcCompat="@tools:sample/backgrounds/scenic" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toStartOf="@+id/textView4"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView2"
app:srcCompat="@android:drawable/ic_input_add" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:text="123 구독"
app:layout_constraintBottom_toBottomOf="@+id/imageView3"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/imageView3"
app:layout_constraintTop_toTopOf="@+id/imageView3" />
</androidx.constraintlayout.widget.ConstraintLayout>
숙제완룟
728x90
반응형
'Kotlin > ★정예★반 숙제' 카테고리의 다른 글
kotlin _ shuffled() /takeLast/take /drop/dropLast/slice (0) | 2023.08.14 |
---|---|
Kotlin - 문자열에서 특정 알파벳 a의 개수 알아보기. (0) | 2023.08.10 |
kotlin_조건문, 반복문_문제만들어보자 2/5 [문제 : 두 숫자 중 큰 숫자를 찾아내기_while 사용 : 제대로 대답할때까지 나갈 수 없는 고구마] (4) | 2023.08.09 |
kotlin / 조건문, 반복문/ 문제만들어보자 1/5 /문제 : 두 숫자 중 큰 숫자를 찾아내기./ return 사용 (0) | 2023.08.09 |
정예반 숙제 : 조건문, 반복문 '소수'인지 아닌지 판별기 만들기 (0) | 2023.08.09 |