I'm using buttons with a custom background.
First, I've added the button images to the drawable folder. Then I created a layout for the button in drawable called large_button.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/large_buttom_pressed"
android:state_pressed="true" />
<item android:drawable="@drawable/large_buttom_pressed"
android:state_focused="true" />
<item android:drawable="@drawable/large_buttom_default" />
</selector>
Then I use the button in the activity layout :
<Button
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test button Text"
android:onClick="sendMessage"
android:background="@drawable/large_button" />
The problem is, (aside from the button being taller than I want), that the text in the button is all caps:
I'd also like to know how I can tell it to use another font (such as the default font, or a font that's already available, not necessarily one I would have to import in a ttf)
I will address the button size problem in another question, so that people who search for one of either issues will not have to read both and possibly become confused.
to change the type and style of font from the xml
So that the text will not be all in uppercase
If you want to change the font from your activity
From your activity you can use this