일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 공자명언
- 명심보감
- 이모지메모
- Android
- 벤자민플랭클린
- bash
- 장자명언
- 이모지
- DART
- 넷플릭스
- Linux
- Streaming
- Coroutine
- 파이썬
- kotlin
- 1인개발자
- androidx
- FSM
- 공부집중
- Firebase
- 명언모음
- recyclerview
- ASMR
- 소울칼리버6
- 좋은글필사하기
- jetpack compose
- 코틀린
- Flutter
- Freesound
- 오픈소스
Archives
- Today
- Total
Vintage appMaker의 Tech Blog
[android] code로 view의 weight 조절 본문
Source code or Tip/Android(Java, Kotlin)
[android] code로 view의 weight 조절
VintageappMaker 2021. 7. 22. 00:18
View의 weight를 code로 변경할 수 있다. 단, 바로 위의 부모가 Linearlayout이어야 한다.
<?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=".PopUpTestActivity">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="false"
android:text="bottom Popup"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:id="@+id/lnMain"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<View
android:id="@+id/view1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:background="#FF0000" />
<View
android:id="@+id/view2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:background="#00FF00" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
[activity_main.xml]
의 화면을 Activity에서 변경하고자 한다면 다음과 같이 간단하게 구현가능하다.
...
val v = findViewById<View>(R.id.view1)
(v.layoutParams as LinearLayout.LayoutParams).weight = 0.0f
val v2 = findViewById<View>(R.id.view2)
(v2.layoutParams as LinearLayout.LayoutParams).weight = 1.0f
...
그러면 다음과 같은 결과화면을 볼 수 있다.
'Source code or Tip > Android(Java, Kotlin)' 카테고리의 다른 글
[링크] Android jetpack compose 스터디 링크 (0) | 2021.08.16 |
---|---|
[ViewModel] ViewModel과 Coroutine을 이용한 타이머 (0) | 2021.08.16 |
RecyclerView 가로스크롤 자석효과 (0) | 2021.07.17 |
[link 모음] Android Transitions를 이용한 Animation (0) | 2021.07.05 |
[gradle] 한 프로젝트의 다양한 Gradle 빌드환경 - Build Variant (0) | 2021.07.02 |
Comments