Standard Android Button with a different color

后端 未结 20 3263
误落风尘
误落风尘 2020-11-21 23:43

I\'d like to change the color of a standard Android button slightly in order to better match a client\'s branding.

The best way I\'ve found to do this so far is to c

20条回答
  •  再見小時候
    2020-11-22 00:14

    The shortest solution which is working with any Android version:

    Notes/Requirements:

    • Use the app: namespace and not the android: namespace!
    • appcompat version > 24.2.0

      dependencies { compile 'com.android.support:appcompat-v7:25.3.1' }

    Explanation:

提交回复
热议问题