I do CardView. I want the card to be completely empty, but for some reason I can not remove the stroke around it.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="3dp"> <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" android:id="@+id/card_chat_message_view" android:layout_gravity="center" android:layout_width="match_parent" android:layout_height="100dp" card_view:cardBackgroundColor="#00000000" card_view:cardElevation="0dp"> </android.support.v7.widget.CardView> </LinearLayout> The figure clearly shows this stroke.

backgroundandwindowBackgoundnot redefined? - JuriySPb ♦