Search code examples
javaandroidmathjax

How to display math formulas in buttons of Android apps?


I'm already aware that Nishant Pathak's MathView, an extension of WebView, can be used in displaying math formulas in Android apps. However what I want is more than that using for my app. Right now I also would like to have math formulas appear in buttons. Can this happen?


Solution

  • Try adding:

    android:theme="@android:style/Widget.Button"
    

    to the MathView. This should not change the functionality of the view, but make it appear as if it was a button.