remote-car / Android / app / src / main / res / drawable / textview_border.xml
textview_border.xml
Raw
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <solid android:color="#FFFFFF" /> <!-- Background color -->

    <stroke
        android:width="2dp"
        android:color="#000000" /> <!-- Border color -->

</shape>