Search code examples
javaandroidtwitter-digits

Is there a way to use Twitter Digits without the button in Android?


I am making an app that uses twitter digits, and I was wondering if there is a way to use it without using the ugly twitter digits button that says "use my phone number"


Solution

  • You have to modify the button programmatically, using xml won't work. For example:

    digitsButton.setText("Your text here");
    digitsButton.setBackgroundColor(getResources().getColor(R.color.primary));