Development Tip

색상이 다른 표준 Android 버튼

yourdevel 2020. 9. 29. 18:46
반응형

색상이 다른 표준 Android 버튼


클라이언트의 브랜딩에 더 잘 어울리도록 표준 Android 버튼의 색상을 약간 변경하고 싶습니다.

지금까지이 작업을 수행하는 가장 좋은 방법은 Button의 드로어 블을에있는 드로어 블로 변경하는 것 입니다 res/drawable/red_button.xml.

<?xml version="1.0" encoding="utf-8"?>    
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/red_button_pressed" />
    <item android:state_focused="true" android:drawable="@drawable/red_button_focus" />
    <item android:drawable="@drawable/red_button_rest" />
</selector>

하지만이를 위해서는 커스터마이징하려는 각 버튼에 대해 실제로 세 가지 다른 드로어 블을 만들어야합니다 (하나는 정지 된 버튼, 하나는 초점을 맞춘 경우, 다른 하나는 눌렀을 때). 그것은 내가 필요로하는 것보다 더 복잡하고 건조하지 않은 것 같습니다.

제가 정말로하고 싶은 것은 버튼에 일종의 색상 변환을 적용하는 것입니다. 내가하는 것보다 버튼의 색상을 변경하는 더 쉬운 방법이 있습니까?


이 모든 작업이 하나의 파일에서 매우 쉽게 수행 될 수 있음을 발견했습니다. 다음 코드를 이름이 지정된 파일에 custom_button.xml넣은 다음 background="@drawable/custom_button"버튼보기에 설정 합니다.

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

    <item android:state_pressed="true" >
        <shape>
            <gradient
                android:startColor="@color/yellow1"
                android:endColor="@color/yellow2"
                android:angle="270" />
            <stroke
                android:width="3dp"
                android:color="@color/grey05" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

    <item android:state_focused="true" >
        <shape>
            <gradient
                android:endColor="@color/orange4"
                android:startColor="@color/orange5"
                android:angle="270" />
            <stroke
                android:width="3dp"
                android:color="@color/grey05" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

    <item>        
        <shape>
            <gradient
                android:endColor="@color/blue2"
                android:startColor="@color/blue25"
                android:angle="270" />
            <stroke
                android:width="3dp"
                android:color="@color/grey05" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

Tomasz의 답변에 따라 PorterDuff 곱하기 모드를 사용하여 전체 버튼의 음영을 프로그래밍 방식으로 설정할 수도 있습니다. 이렇게하면 색조가 아닌 버튼 색상이 변경됩니다.

표준 회색 음영 버튼으로 시작하는 경우 :

button.getBackground().setColorFilter(0xFFFF0000, PorterDuff.Mode.MULTIPLY);

빨간색 음영 버튼이 표시되고

button.getBackground().setColorFilter(0xFF00FF00, PorterDuff.Mode.MULTIPLY);

첫 번째 값은 16 진수 형식의 색상 인 녹색 음영 버튼 등을 제공합니다.

현재 버튼 색상 값에 색상 값을 곱하여 작동합니다. 이 모드로 할 수있는 일이 훨씬 더 많다고 확신합니다.


마이크, 컬러 필터에 관심이 있으실 겁니다.

예 :

button.getBackground().setColorFilter(new LightingColorFilter(0xFFFFFFFF, 0xFFAA0000));

원하는 색상을 얻으려면 이것을 시도하십시오.


이것은 API 15 부터 완벽하게 작동하는 내 솔루션입니다 . 이 솔루션은 material과 같은 모든 기본 버튼 클릭 효과를 유지합니다 RippleEffect. 낮은 API에서 테스트하지는 않았지만 작동해야합니다.

해야 할 일은 다음과 같습니다.

1) 변경되는 스타일 만 만듭니다 colorAccent.

<style name="Facebook.Button" parent="ThemeOverlay.AppCompat">
    <item name="colorAccent">@color/com_facebook_blue</item>
</style>

나머지 스타일을 유지하려면 ThemeOverlay.AppCompat또는 메인 AppTheme을 부모로 사용하는 것이 좋습니다 .

2) button위젯에 다음 두 줄을 추가합니다 .

style="@style/Widget.AppCompat.Button.Colored"
android:theme="@style/Facebook.Button"

때때로 새로운 colorAccent것이 Android Studio 미리보기에 표시되지 않지만 휴대 전화에서 앱을 실행하면 색상이 변경됩니다.


샘플 버튼 위젯

<Button
    android:id="@+id/sign_in_with_facebook"
    style="@style/Widget.AppCompat.Button.Colored"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="@string/sign_in_facebook"
    android:textColor="@android:color/white"
    android:theme="@style/Facebook.Button" />

맞춤 색상이있는 샘플 버튼


이제 속성 과 함께 appcompat-v7의 AppCompatButton사용할 수도 있습니다 backgroundTint.

<android.support.v7.widget.AppCompatButton
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:backgroundTint="#ffaa00"/>

@conjugatedirection 및 @Tomasz의 이전 답변에서 색상 필터 제안을 좋아합니다. 그러나 지금까지 제공된 코드가 예상만큼 쉽게 적용되지 않는다는 것을 알았습니다.

첫째, 컬러 필터를 어디에 적용하고 지 울지 언급되지 않았습니다 . 이 작업을 수행하기에 다른 좋은 장소가있을 수도 있지만, 저에게 떠오른 것은 OnTouchListener 입니다.

원래 질문을 읽었을 때 이상적인 솔루션은 이미지를 포함하지 않는 것입니다. @emmby의 custom_button.xml을 사용하여 받아 들여지는 대답은 아마도 그것이 목표라면 컬러 필터보다 더 적합 할 것입니다. 제 경우에는 버튼이 어떻게 생겼는지에 대한 UI 디자이너의 png 이미지로 시작합니다. 버튼 배경을이 이미지로 설정하면 기본 하이라이트 피드백이 완전히 손실됩니다. 이 코드는 해당 동작을 프로그래밍 방식의 어둡게하기 효과로 대체합니다.

button.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                // 0x6D6D6D sets how much to darken - tweak as desired
                setColorFilter(v, 0x6D6D6D);
                break;
            // remove the filter when moving off the button
            // the same way a selector implementation would 
            case MotionEvent.ACTION_MOVE:
                Rect r = new Rect();
                v.getLocalVisibleRect(r);
                if (!r.contains((int) event.getX(), (int) event.getY())) {
                    setColorFilter(v, null);
                }
                break;
            case MotionEvent.ACTION_OUTSIDE:
            case MotionEvent.ACTION_CANCEL:
            case MotionEvent.ACTION_UP:
                setColorFilter(v, null);
                break;
        }
        return false;
    }

    private void setColorFilter(View v, Integer filter) {
        if (filter == null) v.getBackground().clearColorFilter();
        else {
            // To lighten instead of darken, try this:
            // LightingColorFilter lighten = new LightingColorFilter(0xFFFFFF, filter);
            LightingColorFilter darken = new LightingColorFilter(filter, 0x000000);
            v.getBackground().setColorFilter(darken);
        }
        // required on Android 2.3.7 for filter change to take effect (but not on 4.0.4)
        v.getBackground().invalidateSelf();
    }
});

나는 이것을 여러 버튼에 적용하기 위해 별도의 클래스로 추출했습니다. 아이디어를 얻기 위해 익명의 내부 클래스로 표시되었습니다.


XML로 색상 버튼을 만드는 경우 별도의 파일에 포커스 및 눌림 상태를 지정하고 다시 사용하여 코드를 좀 더 깔끔하게 만들 수 있습니다. 내 녹색 버튼은 다음과 같습니다.

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

    <item android:state_focused="true" android:drawable="@drawable/button_focused"/>
    <item android:state_pressed="true" android:drawable="@drawable/button_pressed"/>

    <item>
        <shape>
            <gradient android:startColor="#ff00ff00" android:endColor="#bb00ff00" android:angle="270" />
            <stroke android:width="1dp" android:color="#bb00ff00" />
            <corners android:radius="3dp" />
            <padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" />
        </shape>
    </item>

</selector>

모든 Android 버전에서 작동하는 가장 짧은 솔루션 :

<Button
     app:backgroundTint="@color/my_color"

참고 / 요구 사항 :

  • 사용하는 app:네임 스페이스와 하지android: 네임 스페이스를!
  • appcompat 버전> 24.2.0

    종속성 { 'com.android.support:appcompat-v7:25.3.1'컴파일}

설명 :여기에 이미지 설명 입력


이 접근 방식을 사용하고 있습니다

style.xml

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:colorPrimaryDark">#413152</item>
    <item name="android:colorPrimary">#534364</item>
    <item name="android:colorAccent">#534364</item>
    <item name="android:buttonStyle">@style/MyButtonStyle</item>
</style>

<style name="MyButtonStyle" parent="Widget.AppCompat.Button.Colored">
    <item name="android:colorButtonNormal">#534364</item>
    <item name="android:textColor">#ffffff</item>
</style>

위에서 볼 수 있듯이 버튼에 커스텀 스타일을 사용하고 있습니다. 버튼 색상은 강조 색상에 해당합니다. android:backgroundGoogle이 제공하는 파급 효과를 잃지 않기 때문에 설정보다 훨씬 더 나은 접근 방식 이라고 생각합니다.


훨씬 더 쉬운 방법이 있습니다 : android-holo-colors.com

모든 홀로 드로어 블 (버튼, 스피너 등)의 색상을 쉽게 변경할 수 있습니다. 색상을 선택한 다음 모든 해상도에 대한 드로어 블이 포함 된 zip 파일을 다운로드합니다.


다음과 같이 사용하십시오.

buttonOBJ.getBackground().setColorFilter(Color.parseColor("#YOUR_HEX_COLOR_CODE"), PorterDuff.Mode.MULTIPLY);

에서 <Button>사용 android:background="#33b5e5". 이상android:background="@color/navig_button"


DroidUX 구성 요소 라이브러리는이 ColorButton당신도 앱을 허용하는 경우이 기능을 사용하여 버튼의 색상 / 테마를 설정하도록 할 수 있도록, 그 색 XML 정의를 통해 프로그래밍 방식 런타임에 모두 쉽게 변경할 수 있습니다 위젯을.


또한이 온라인 도구를 사용 하여 http://angrytools.com/android/button/ 버튼을 사용자 android:background="@drawable/custom_btn"정의하고 레이아웃에서 사용자 정의 된 버튼을 정의하는 데 사용할 수 있습니다.


버튼의 테마를 설정할 수 있습니다.

<style name="AppTheme.ButtonBlue" parent="Widget.AppCompat.Button.Colored">
 <item name="colorButtonNormal">@color/HEXColor</item>
 <item name="android:textColor">@color/HEXColor</item>
</style>

쉬운 방법은 반경, 그라디언트, 눌린 색상, 일반 색상 등과 같은 원하는 모든 속성을 허용하는 사용자 정의 Button 클래스를 정의한 다음 XML을 사용하여 배경을 설정하는 대신 XML 레이아웃에서 사용하는 것입니다. 샘플은 여기

반경, 선택한 색상 등과 같은 속성이 동일한 버튼이 많은 경우 매우 유용합니다. 상속 된 버튼을 사용자 지정하여 이러한 추가 속성을 처리 할 수 ​​있습니다.

결과 (배경 선택기가 사용되지 않음).

일반 버튼

일반 이미지

누름 버튼

여기에 이미지 설명 입력


잘 작동하는 다른 스타일의 버튼을 만드는 방법은 Button 객체를 하위 클래스로 만들고 색상 필터를 적용하는 것입니다. 또한 버튼에 알파를 적용하여 활성화 및 비활성화 상태를 처리합니다.

import android.annotation.TargetApi;
import android.content.Context;
import android.graphics.Color;
import android.graphics.ColorFilter;
import android.graphics.LightingColorFilter;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LayerDrawable;
import android.os.Build;
import android.util.AttributeSet;
import android.widget.Button;

public class DimmableButton extends Button {

    public DimmableButton(Context context) {
        super(context);
    }

    public DimmableButton(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public DimmableButton(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @SuppressWarnings("deprecation")
    @Override
    public void setBackgroundDrawable(Drawable d) {
        // Replace the original background drawable (e.g. image) with a LayerDrawable that
        // contains the original drawable.
        DimmableButtonBackgroundDrawable layer = new DimmableButtonBackgroundDrawable(d);
        super.setBackgroundDrawable(layer);
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
    @Override
    public void setBackground(Drawable d) {
        // Replace the original background drawable (e.g. image) with a LayerDrawable that
        // contains the original drawable.
        DimmableButtonBackgroundDrawable layer = new DimmableButtonBackgroundDrawable(d);
        super.setBackground(layer);
    }

    /**
     * The stateful LayerDrawable used by this button.
     */
    protected class DimmableButtonBackgroundDrawable extends LayerDrawable {

        // The color filter to apply when the button is pressed
        protected ColorFilter _pressedFilter = new LightingColorFilter(Color.LTGRAY, 1);
        // Alpha value when the button is disabled
        protected int _disabledAlpha = 100;
        // Alpha value when the button is enabled
        protected int _fullAlpha = 255;

        public DimmableButtonBackgroundDrawable(Drawable d) {
            super(new Drawable[] { d });
        }

        @Override
        protected boolean onStateChange(int[] states) {
            boolean enabled = false;
            boolean pressed = false;

            for (int state : states) {
                if (state == android.R.attr.state_enabled)
                    enabled = true;
                else if (state == android.R.attr.state_pressed)
                    pressed = true;
            }

            mutate();
            if (enabled && pressed) {
                setColorFilter(_pressedFilter);
            } else if (!enabled) {
                setColorFilter(null);
                setAlpha(_disabledAlpha);
            } else {
                setColorFilter(null);
                setAlpha(_fullAlpha);
            }

            invalidateSelf();

            return super.onStateChange(states);
        }

        @Override
        public boolean isStateful() {
            return true;
        }
    }

}

values ​​\ styles.xml

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

<style name="RedAccentButton" parent="ThemeOverlay.AppCompat.Light">
    <item name="colorAccent">#ff0000</item>
</style>

그때:

<Button
    style="@style/Widget.AppCompat.Button.Colored"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="text" />

<Button
    style="@style/Widget.AppCompat.Button.Colored"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:enabled="false"
    android:text="text" />

<Button
    style="@style/Widget.AppCompat.Button.Colored"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="text"
    android:theme="@style/RedAccentButton" />

<Button
    style="@style/Widget.AppCompat.Button.Colored"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:enabled="false"
    android:text="text"
    android:theme="@style/RedAccentButton" />

결과


머티리얼 디자인 가이드 라인에 따라 아래 코드와 같은 스타일을 사용해야합니다.

<style name="MyButton" parent="Theme.AppCompat.Light>
    <item name="colorControlHighlight">#F36F21</item>
    <item name="colorControlHighlight">#FF8D00</item>
</style>

레이아웃에서이 속성을 버튼에 추가합니다.

    android:theme="@style/MyButton"

간단합니다. 프로젝트에이 종속성을 추가하고 1. 모든 모양 2. 모든 색상 3. 모든 테두리 4. 재질 효과로 버튼을 만듭니다.

https://github.com/manojbhadane/QButton

<com.manojbhadane.QButton
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="OK"
       app:qb_backgroundColor="@color/green"
       app:qb_radius="100"
       app:qb_strokeColor="@color/darkGreen"
       app:qb_strokeWidth="5" />

참고 URL : https://stackoverflow.com/questions/1521640/standard-android-button-with-a-different-color

반응형