mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-04 10:15:18 +08:00
55 lines
2.0 KiB
XML
55 lines
2.0 KiB
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_permotion_ripple"
|
|
android:gravity="center|start"
|
|
android:orientation="horizontal"
|
|
android:padding="10dp"
|
|
tools:ignore="ContentDescription,UseCompoundDrawables,SmallSp">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="45dp"
|
|
android:layout_height="45dp"
|
|
app:cardBackgroundColor="@color/trans"
|
|
app:cardCornerRadius="10dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/app_icon"
|
|
android:layout_width="45dp"
|
|
android:layout_height="45dp" />
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center|start"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/app_name_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="5dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:textColor="@color/colorTextGray"
|
|
android:textSize="15sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/config_type_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:textColor="@color/colorTextDark"
|
|
android:textSize="11sp" />
|
|
</LinearLayout>
|
|
</LinearLayout> |