티스토리 뷰
Activity를 코드에서 높이 조절이 필요한 경우가 생겼다.
activity layout의 크기를 결정하는 layout에 id를 설정하고,
이 id에 layoutParams의 height 값을 변경하여 작업하였다.
아래에서는 push_web_view_layout의 높이가 activity의 실제 높이가 되어 이 값으로 높이를 조절하였다.
<?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:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:layout_gravity="center_vertical|center_horizontal"
tools:context=".WebViewPopupActivity" >
<ImageView
android:id="@+id/btn_popup_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_gravity="end"
android:contentDescription="@null"
android:background="@drawable/webview_popup_btn_close" />
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="450dp"
android:id="@+id/push_web_view_layout"
app:cardCornerRadius="20dp">
<WebView
android:id="@+id/push_web_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.cardview.widget.CardView>
</LinearLayout>
push_web_view_layout의 layoutParams의 height 의 값을 원하는 px 값으로 변경하였다.
해상도 문제가 있어 px을 dp로 변환 후 height에 적용 하여 해상도에 영향이 없도록 변경.
val heightPx = 450
val layoutParams: ViewGroup.LayoutParams = push_web_view_layout.layoutParams
val height =
TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, heightPx.toFloat(), resources.displayMetrics)
.toInt()
layoutParams.height = height
if (BuildConfig.DEBUG) Log.d("테스트", "window height change = $height")
'안드로이드' 카테고리의 다른 글
앱 알림 설정 값 가져오기 (0) | 2023.12.12 |
---|---|
인앱 업데이트 (0) | 2022.11.25 |
안드로이드 웹뷰(WebView) 동영상 화면 축소 기능 문제 (0) | 2022.05.16 |
Volley를 이용한 이미지(?) 파일 업로드 (0) | 2022.05.13 |
ContentResolver 파일경로 가져오기 (0) | 2022.05.03 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- FileDataPart
- 난왜테스트가안될까
- 이미지파일보기
- #gradle.properties
- #buildconofig
- Kotlin
- 새로올린테스트앱이안보이네
- onShowCustomView
- 인앱 업데이트
- app restart
- px -> dp
- Android
- nodejs
- 작업은했는데
- Activity 크기 변경
- height변경
- 음원파일재생
- 이미지파일공유
- 안드로이드
- base64
- 웹뷰
- areNotificationsEnabled
- SWIFT
- 알림소리끄기
- px to dp
- 알림허용
- 한글깨짐
- 알림소리묵음처리
- VolleyFileUploadRequest
- webview
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함