mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 15:57:29 +00:00
22 lines
790 B
XML
22 lines
790 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<androidx.cardview.widget.CardView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:cardCornerRadius="1dp"
|
||
|
app:cardElevation="2dp"
|
||
|
app:cardUseCompatPadding="true">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/container"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="4dp"
|
||
|
android:orientation="horizontal" />
|
||
|
</androidx.cardview.widget.CardView>
|
||
|
</FrameLayout>
|