2016-03-31 13:57:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-04-16 17:07:56 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-25 15:57:01 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-03-31 13:57:57 +00:00
|
|
|
android:id="@+id/card_view"
|
2020-06-25 15:57:01 +00:00
|
|
|
android:layout_height="96dp"
|
|
|
|
|
android:layout_width="76dp"
|
2019-04-16 17:07:56 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_gray_700"
|
|
|
|
|
android:orientation="vertical"
|
2020-06-25 15:57:01 +00:00
|
|
|
android:padding="8dp">
|
2019-04-16 17:07:56 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:id="@+id/imageView"
|
2020-06-25 15:57:01 +00:00
|
|
|
android:layout_width="70dp"
|
|
|
|
|
android:layout_height="70dp"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
app:actualImageScaleType="fitCenter"/>
|
2016-03-31 13:57:57 +00:00
|
|
|
|
2019-04-16 17:07:56 +00:00
|
|
|
<ProgressBar
|
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/trainedProgressBar"
|
2020-06-25 15:57:01 +00:00
|
|
|
android:progressTint="@color/green_100"
|
|
|
|
|
android:progressBackgroundTint="@color/gray_600"
|
|
|
|
|
android:layout_marginTop="4dp"
|
2019-04-16 17:07:56 +00:00
|
|
|
android:max="50" />
|
|
|
|
|
</LinearLayout>
|