Вы можете использовать раскладку в качестве кнопки style="@android:style/Widget.Button"
и настроить ее по своему усмотрению.
Вставьте это в свой XML-файл:
<LinearLayout
android:id="@+id/button"
style="@android:style/Widget.Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:text="TextView" />
</LinearLayout>