Changes of com.discord v1260

This commit is contained in:
root 2020-09-14 18:37:20 +00:00
parent 992e6ebb45
commit d892b01c80
900 changed files with 21156 additions and 16097 deletions

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.discord.rlottie.RLottieImageView android:id="@id/sticker_full_size_lottie" android:layout_width="@dimen/dsti_length" android:layout_height="@dimen/dsti_length" />
</FrameLayout>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView android:id="@id/sticker_full_size_png" android:layout_width="@dimen/dsti_length" android:layout_height="@dimen/dsti_length" android:importantForAccessibility="no" />
</FrameLayout>

View file

@ -2,8 +2,8 @@
<LinearLayout style="@style/UiKit.ViewGroup.LinearLayout"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout android:paddingLeft="12.0dip" android:paddingTop="16.0dip" android:paddingRight="12.0dip" android:paddingBottom="16.0dip" style="@style/UiKit.ViewGroup.LinearLayout.Horizontal">
<com.discord.views.LoadingButton android:id="@id/sticker_store_buy_button_premium" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" android:layout_marginEnd="8.0dip" app:lb_background_color="@color/status_green" app:lb_icon="@drawable/ic_nitro_badge_white" app:lb_icon_gravity="textStart" app:lb_progress_color="@color/white" />
<com.discord.views.LoadingButton android:id="@id/sticker_store_buy_button" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" app:lb_background_color="?colorButtonSecondary" app:lb_progress_color="@color/white" />
<com.discord.views.LoadingButton android:id="@id/sticker_store_buy_button_premium" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" android:layout_marginEnd="8.0dip" app:lb_background_color="@color/status_green" app:lb_icon="@drawable/ic_nitro_badge_white" app:lb_icon_gravity="textStart" app:lb_progress_color="@color/white" />
<com.discord.views.LoadingButton android:id="@id/sticker_store_buy_button" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" app:lb_background_color="?colorButtonSecondary" app:lb_progress_color="@color/white" />
</LinearLayout>
<View android:id="@id/sticker_store_buy_button_divider" style="@style/UiKit.Divider" />
</LinearLayout>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout android:id="@id/sticker_pack_store_sheet_container" android:background="?colorBackgroundSecondary" style="@style/UiKit.ViewGroup.Page"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.recyclerview.widget.RecyclerView android:id="@id/sticker_pack_store_sheet_recycler" android:background="?colorBackgroundPrimary" android:paddingLeft="12.0dip" android:paddingTop="4.0dip" android:paddingRight="12.0dip" android:clipToPadding="false" android:layout_height="fill_parent" app:layout_constraintBottom_toTopOf="@id/sticker_pack_store_sheet_buy_button_container" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" style="@style/UiKit.ViewGroup.RecyclerView" />
<FrameLayout android:id="@id/sticker_pack_store_sheet_buy_button_container" android:background="?colorBackgroundSecondary" android:layout_width="fill_parent" android:layout_height="wrap_content" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent">
<include layout="@layout/sticker_picker_store_buy_button" />
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>