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 |
Tags
- React
- Kotlin
- stylesheet
- JavaScript
- npm
- GoogleMaps
- array
- Java
- TextView
- 랜덤번호
- 오버라이딩
- RecyclerView
- Hook
- Javscript
- 스프링부트
- 랜덤넘버
- 코틀린
- TypeScript
- SpringBoot
- scrollview
- 안드로이드
- 리액트
- Linux
- JS
- 자바스크립트
- Android
- button
- fragment
- nodejs
- 구글맵스
Archives
- Today
- Total
타닥타닥 개발자의 일상
kotlin 원하는 이미지파일 android 화면에서 배경으로 설정하는 방법 android:background 본문
코딩 기록/Kotlin
kotlin 원하는 이미지파일 android 화면에서 배경으로 설정하는 방법 android:background
NomadHaven 2022. 2. 7. 02:04폴더 및 파일 설정
본인이 배경으로 지정하고 싶은 이미지파일 bg.jpg를 drawble폴더에 저장
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
tools:context=".MainActivity">
<!-- <ImageView
android:layout_width="832dp"
android:layout_height="380dp" app:srcCompat="@drawable/sample" android:id="@+id/imageView"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintVertical_bias="0.443"/>-->
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/button"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
8번째줄을 통해 drawble폴더에 있는 bg 파일을 배경으로 지정
android:background="@drawable/bg"
결과화면
이미지파일이 문제없이 배경으로 지정된다.
지정된 배경 위에 button이 생성된다.
'코딩 기록 > Kotlin' 카테고리의 다른 글
ScrollView / TableLayout 이용하여 스크롤 가능한 안드로이드 화면 만들기 (0) | 2022.02.07 |
---|---|
Kotlin / listview 이용해서 android화면에 스크롤 사용하는 긴 선택항목 만들기 (0) | 2022.02.07 |
Kotlin 안드로이드 화면에 Spinner 보이게 하기, Spinner로 선택한 항목 textView랑 연결하기 (0) | 2022.02.07 |
Kotlin 라디오 버튼으로 항목 선택하고 텍스트 뷰에 보이게 하는 안드로이드 페이지 만들기 radio, TextView (0) | 2022.02.07 |
코틀린으로Kotlin 증감하는 Counter만들기, setOnClickListener과 증감 연산자 이용 (0) | 2022.02.03 |
Comments