모양 색상을 동적으로 변경하는 방법은 무엇입니까?


136

나는 가지고있다

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
   android:shape="rectangle">
    <solid
       android:color="#FFFF00" />
    <padding android:left="7dp"
        android:top="7dp"
        android:right="7dp"
        android:bottom="7dp" />
</shape>

<TextView
    android:background="@drawable/test"
    android:layout_height="45dp"
    android:layout_width="100dp"
    android:text="Moderate"
/>

이제 웹 서비스 호출에서 얻은 정보에 따라이 모양이 색상을 변경하기를 원합니다. 따라서 웹 서비스 호출에서 수신 한 색상에 따라 노란색 또는 녹색 또는 빨간색 일 수 있습니다.

도형의 색상을 어떻게 바꿀 수 있습니까? 이 정보를 바탕으로?


3
@Couitchy 메소드에 의해 지정된대로 참조를 가져오고 프로그래밍 방식으로 색상을 설정하려고 할 때 유효하지 않은 캐스트로 인해 런타임에 앱이 중단 되지 않고 a를 View.getBackground()반환합니다 . [Android Shape doc] ( developer.android.com/guide/topics/resources/… ) 상태 : COMPILED RESOURCE DATATYPE :에 대한 리소스 포인터 . GradientDrawableShapeDrawableGradientDrawable
Luis Quijada 2016 년

답변:


300

이렇게 간단하게 수정할 수 있습니다

GradientDrawable bgShape = (GradientDrawable)btn.getBackground();
bgShape.setColor(Color.BLACK);

9
Btn.getBackground는 무엇입니까?
chobo2

16
java.lang.ClassCastException: android.graphics.drawable.GradientDrawable cannot be cast to android.graphics.drawable.ShapeDrawable이 제안을 시도 할 때 얻고 있습니다.
prolink007

2
작동하지 않습니다. 전송 오류가 발생합니다. 수정 또는 다른 답변이 필요합니다
ndgreen 2016 년

6
이것은 잘 작동합니다. 답변이 수정 된 이후 이전 의견은 오래되었습니다!
W3hri

4
shoul use GradientDrawable bgShape = (GradientDrawable) btn.getBackground (). getCurrent ();
naveed148

60

나를 위해 getBackgrounda GradientDrawable대신을 반환 했기 때문에 충돌이 발생했습니다 ShapeDrawable.

그래서 나는 이것을 다음과 같이 수정했다 :

((GradientDrawable)someView.getBackground()).setColor(someColor);

42

이것은 초기 xml 리소스로 저에게 효과적입니다.

example.setBackgroundResource(R.drawable.myshape);
GradientDrawable gd = (GradientDrawable) example.getBackground().getCurrent();
gd.setColor(Color.parseColor("#000000"));
gd.setCornerRadii(new float[]{30, 30, 30, 30, 0, 0, 30, 30});
gd.setStroke(2, Color.parseColor("#00FFFF"), 5, 6);

위의 결과 : http://i.stack.imgur.com/hKUR7.png


이것이 정답입니다. 위의 두 가지 대답 모두 나를 위해 작동하지 않았습니다. 둘 다 예외가 발생합니다.
Sanal Varghese

10

Java로 자신 만의 모양을 만들 수 있습니다. Page Controler와 같은 iPhone 에서이 작업을 수행하고 Java로 모양을 그립니다.

/**
 * Builds the active and inactive shapes / drawables for the page control
 */
private void makeShapes() {

    activeDrawable = new ShapeDrawable();
    inactiveDrawable = new ShapeDrawable();
    activeDrawable.setBounds(0, 0, (int) mIndicatorSize,
            (int) mIndicatorSize);
    inactiveDrawable.setBounds(0, 0, (int) mIndicatorSize,
            (int) mIndicatorSize);

    int i[] = new int[2];
    i[0] = android.R.attr.textColorSecondary;
    i[1] = android.R.attr.textColorSecondaryInverse;
    TypedArray a = this.getTheme().obtainStyledAttributes(i);

    Shape s1 = new OvalShape();
    s1.resize(mIndicatorSize, mIndicatorSize);
    Shape s2 = new OvalShape();
    s2.resize(mIndicatorSize, mIndicatorSize);

    ((ShapeDrawable) activeDrawable).getPaint().setColor(
            a.getColor(0, Color.DKGRAY));
    ((ShapeDrawable) inactiveDrawable).getPaint().setColor(
            a.getColor(1, Color.LTGRAY));

    ((ShapeDrawable) activeDrawable).setShape(s1);
    ((ShapeDrawable) inactiveDrawable).setShape(s2);
}

도움이 되었기를 바랍니다. 그 레즈 파비안


7

어쩌면 다른 사람이 필요에 따라 여러 드로어 블을 만들지 않고 XML에서 색상을 변경해야 할 수도 있습니다. 그런 다음 원을 색상없이 그릴 수있게 만들고 ImageView에 backgroundTint를 지정하십시오.

circle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
</shape>

그리고 당신의 레이아웃에서 :

<ImageView
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:background="@drawable/circle"
    android:backgroundTint="@color/red"/>

편집하다:

이 방법과 관련하여 Android Lollipop 5.0 (API 레벨 21)에서 작동하지 못하게 하는 버그 가 있습니다 . 그러나 최신 버전에서 수정되었습니다.


5
    LayerDrawable bgDrawable = (LayerDrawable) button.getBackground();
    final GradientDrawable shape = (GradientDrawable)
            bgDrawable.findDrawableByLayerId(R.id.round_button_shape);
    shape.setColor(Color.BLACK);

round_button_shape는 shape xml 파일에서 어디에 정의해야합니까?
Jayesh

5

circle.xml (드로어 블)

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid
    android:color="#000"/>

<size
    android:width="10dp"
    android:height="10dp"/>
</shape>

나열한 것

<ImageView
      android:id="@+id/circleColor"
      android:layout_width="15dp"
       android:layout_height="15dp"
      android:textSize="12dp"
       android:layout_gravity="center"
       android:layout_marginLeft="10dp"
      android:background="@drawable/circle"/>

활동 중

   circleColor = (ImageView) view.findViewById(R.id.circleColor);
   int color = Color.parseColor("#00FFFF");
   ((GradientDrawable)circleColor.getBackground()).setColor(color);

완벽한 것은 아니지만 솔루션을 얻는 데 도움이되었습니다.
Rakesh Yadav

2

이 솔루션은 안드로이드 SDK v19를 사용하여 저에게 효과적이었습니다.

//get the image button by id
ImageButton myImg = (ImageButton) findViewById(R.id.some_id);

//get drawable from image button
GradientDrawable drawable = (GradientDrawable) myImg.getDrawable();

//set color as integer
//can use Color.parseColor(color) if color is a string
drawable.setColor(color)

2

다음과 같이 imageView가있는 경우 :

   <ImageView
    android:id="@+id/color_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="10dp"
    android:src="@drawable/circle_color"/>

src로 그릴 수있는 모양을 제공하면이 코드를 사용하여 모양의 색상을 변경할 수 있습니다.

ImageView iv = (ImageView)findViewById(R.id.color_button);
GradientDrawable bgShape = (GradientDrawable)iv.getDrawable();
bgShape.setColor(Color.BLACK);

1

내 모양 XML :

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid  android:color="@android:color/transparent" />
<stroke android:width="0.5dp" android:color="@android:color/holo_green_dark"/>
</shape>

내 활동 XML :

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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"
android:fitsSystemWindows="true"
tools:context="cn.easydone.test.MainActivity">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />
    <TextView
        android:id="@+id/test_text"
        android:background="@drawable/bg_stroke_dynamic_color"
        android:padding="20dp"
        android:text="asdasdasdasd"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</android.support.design.widget.AppBarLayout>

<android.support.v7.widget.RecyclerView
    android:id="@+id/recycler_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10dp"
    android:clipToPadding="false"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

내 활동 자바 :

 TextView testText = (TextView) findViewById(R.id.test_text);
 ((GradientDrawable)testText.getBackground()).setStroke(10,Color.BLACK);

결과 사진 : 결과


1

반지름으로 도형을 채우는 가장 간단한 방법 은 다음 같습니다.

XML :

<TextView
    android:id="@+id/textView"
    android:background="@drawable/test"
    android:layout_height="45dp"
    android:layout_width="100dp"
    android:text="Moderate"/>

자바:

(textView.getBackground()).setColorFilter(Color.parseColor("#FFDE03"), PorterDuff.Mode.SRC_IN);

0

Ronnie의 답변을 시도하면 앱이 다운되었습니다. 그런 다음 드로어 블 XML을 확인합니다. 다음과 같이 보입니다 :

<selector >...</selector>

. 나는 이것을 이것으로 바꿨다 : (또한 속성을 바꿨다)

<shape> ... </shape>

효과가있다.

같은 문제가 발생하는 사람들을 위해.


0

drawable_rectangle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <solid android:color="@android:color/transparent" />

    <stroke
        android:width="1dp"
        android:color="#9f9f9f" />

    <corners
        android:bottomLeftRadius="5dp"
        android:bottomRightRadius="5dp"
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp" />

</shape>

TextView

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/drawable_rectangle"
    android:gravity="center"
    android:padding="10dp"
    android:text="Status"
    android:textColor="@android:color/white"
    android:textSize="20sp" />


public static void changeRectangleColor(View view, int color) {
    ((GradientDrawable) view.getBackground()).setStroke(1, color);
}    

changeRectangleColor(textView, ContextCompat.getColor(context, R.color.colorAccent));

0

이를 위해 바인딩 어댑터 (Kotlin) 를 사용할 수 있습니다 . 아래와 같이 ChangeShapeColor라는 바인딩 어댑터 클래스를 만듭니다.

@BindingAdapter("shapeColor")

// Method to load shape and set its color 

fun loadShape(textView: TextView, color: String) {
// first get the drawable that you created for the shape 
val mDrawable = ContextCompat.getDrawable(textView.context, 
R.drawable.language_image_bg)
val  shape =   mDrawable as (GradientDrawable)
// use parse color method to parse #34444 to the int 
shape.setColor(Color.parseColor(color))
 }

res / drawable 폴더에 드로어 블 모양을 만듭니다. 서클을 만들었습니다

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval" >
<solid android:color="#anyColorCode"/>

<size
    android:width="@dimen/dp_16"
    android:height="@dimen/dp_16"/>
</shape>

마지막으로 당신의 견해를 참조하십시오

  <TextView>
   .........
  app:shapeColor="@{modelName.colorString}"
 </Textview>
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.