Added files of Alex and fixed the code.

This commit is contained in:
Batuhan Berk Başoğlu 2020-11-19 13:59:45 -05:00
parent c3d1f605d7
commit ccd5a1d53b
872 changed files with 15722 additions and 26674 deletions

View file

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:cardCornerRadius="2dp"
app:cardPreventCornerOverlap="true"
app:cardBackgroundColor="#00123456"
android:layout_marginRight="8dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="104dp"
android:layout_margin="1dp">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginStart="20dp"
android:layout_marginTop="20dp"
android:layout_toEndOf="@+id/imageView"
android:text="Line 1"
android:textColor="#ffffff"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView"
android:layout_marginStart="20dp"
android:layout_marginTop="0dp"
android:layout_toEndOf="@+id/imageView"
android:textColor="#ffffff"
android:text="Line 2"
android:textSize="15sp" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView"
android:layout_marginStart="20dp"
android:layout_marginTop="20dp"
android:textColor="#ffffff"
android:layout_toEndOf="@+id/imageView"
android:text="Line 3"
android:textSize="15sp" />
</RelativeLayout>
</androidx.cardview.widget.CardView>