Android

안드로이드 android:drawableLeft 아이콘 이미지 사이즈 변경 방법

android:drawableLeft 아이콘 이미지 사이즈 변경 방법

android:drawableLeft를 사용하여 TextView의 왼쪽에 아이콘을 추가할 수 있다. 이 때 이미지 사이즈를 변경하고 싶은데 속성값으로 지원해주지않는다. 방법은 있습니다.

resource 폴더의 drawable에 xml 파일을 추가해준다.

폴더위치 : appsrcmainresdrawable

생성파일 명 : drawable_left_image_customise.xml  :소문자와 숫자만 가능하다.

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:drawable="@drawable/baseline_build_white_18"
        android:width="15dp"
        android:height="15dp"
        />
</layer-list >

사용법


<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="17sp"
    android:drawableLeft="@android:drawable/drawable_left_image_customise"
    android:text="@string/cont_22"
    android:textColor="@color/colorxml_color_11"
    android:textStyle="bold" />

android:paddingLeft 또는 android:paddingRight 를 사용하여 각각 왼쪽 / 오른쪽 패딩을 설정이 가능하다.

Leave a Reply

error: Content is protected !!