-4

I just wanted to add a broder to my Button but its not working.

Main xml script:

enter image description here

button_style4.xml:

enter image description here

The Button appears normaly in the App and it works as I want it to work just the border is not appearing... Someone find the fault?

Tim Jansen
  • 55
  • 1
  • 7

1 Answers1

0
    <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:background="@drawable/button_border"
    android:text="Example"
    android:textColor="@color/black"
    style="@style/Theme.AppCompat.NoActionBar"
    />
Subin Babu
  • 1,515
  • 2
  • 24
  • 50