250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 막내의막무가내 코틀린 안드로이드
- 막내의막무가내 목표 및 회고
- 주엽역 생활맥주
- 막내의막무가내 알고리즘
- 주택가 잠실새내
- 막내의 막무가내
- 막내의막무가내 안드로이드 에러 해결
- 막내의막무가내 프로그래밍
- 프로그래머스 알고리즘
- 막내의막무가내 코볼 COBOL
- flutter network call
- 부스트코스에이스
- 막내의막무가내 코틀린
- 부스트코스
- 막내의막무가내 SQL
- 막내의막무가내 안드로이드 코틀린
- 막내의막무가내
- 막내의막무가내 플러터 flutter
- 막내의막무가내 안드로이드
- 프래그먼트
- 막내의막무가내 rxjava
- 막내의막무가내 일상
- 2022년 6월 일상
- 안드로이드 sunflower
- 안드로이드 Sunflower 스터디
- 막무가내
- Fragment
- 안드로이드
- 막내의 막무가내 알고리즘
- 막내의막무가내 플러터
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[안드로이드] 기억노트 - ConstraintLayout Scrollview 사용시 상단 뷰 고정하는 방법 기록 본문
안드로이드/코틀린 & 아키텍처 & Recent
[안드로이드] 기억노트 - ConstraintLayout Scrollview 사용시 상단 뷰 고정하는 방법 기록
막무가내막내 2020. 7. 5. 19:31728x90
[2021-05-03 업데이트]
까먹을때를 대비해 샘플을 남깁니다.
<?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/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/a"
android:textColorLink="#FF9800"
android:textSize="23sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ScrollView
android:layout_width="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/text">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="match_parent"
android:layout_height="1200dp"
android:src="@drawable/ic_pencil"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
728x90
'안드로이드 > 코틀린 & 아키텍처 & Recent' 카테고리의 다른 글
[안드로이드] 안드로이드 BottomSheetDialog 콜백 구현 (10) | 2020.07.11 |
---|---|
[안드로이드] 기억노트 - 다이얼로그 프래그먼트 레이아웃 기록 (0) | 2020.07.07 |
[안드로이드] 안드로이드 Linkfy 적용 (하나의 텍스트에 링크를 여러개 달아주자) (0) | 2020.07.05 |
[안드로이드] 기억노트 - Retrofit2 참고 사이트 (0) | 2020.07.03 |
[안드로이드] 이미지 전송중 Retorift2 관련 에러: Only one encoding annotation allowed (3) | 2020.07.03 |
Comments