discord-jadx/app/src/main/res/layout/widget_chat_list_adapter_item_upload_progress.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

12 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:paddingLeft="8dp" android:paddingRight="8dp" android:layout_width="match_parent" android:layout_height="wrap_content" android:baselineAligned="false" style="@style/UiKit_Chat_Embed_Container">
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="0.05" android:layout_marginEnd="8dp" style="@style/UiKit_ViewGroup_LinearLayout">
<com.discord.views.UploadProgressView android:id="@+id/upload_progress_1" android:layout_width="match_parent" android:layout_height="wrap_content"/>
<com.discord.views.UploadProgressView android:id="@+id/upload_progress_2" android:visibility="gone" android:layout_width="match_parent" android:layout_height="wrap_content"/>
<com.discord.views.UploadProgressView android:id="@+id/upload_progress_3" android:visibility="gone" android:layout_width="match_parent" android:layout_height="wrap_content"/>
</LinearLayout>
<FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="0.9">
<ImageView android:id="@+id/progress_cancel_top" android:background="?attr/selectableItemBackground" android:layout_width="18dp" android:layout_height="18dp" android:layout_marginTop="4dp" android:src="@drawable/ic_close_primary_200_24dp" android:contentDescription="@string/cancel"/>
<ImageView android:layout_gravity="center_vertical" android:id="@+id/progress_cancel_centered" android:background="?attr/selectableItemBackground" android:layout_width="18dp" android:layout_height="18dp" android:src="@drawable/ic_close_primary_200_24dp" android:contentDescription="@string/cancel"/>
</FrameLayout>
</LinearLayout>