-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c10165
commit 55b5bf5
Showing
164 changed files
with
3,591 additions
and
2,460 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+614 Bytes
(100%)
library/build/.transforms/52e74032ed5885266caa7e12f983eb2f/transformed/out/jars/classes.jar
Binary file not shown.
193 changes: 193 additions & 0 deletions
193
.../52e74032ed5885266caa7e12f983eb2f/transformed/out/res/layout-sw600dp-v13/alert_dialog.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:wheel="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/loading" | ||
android:layout_width="300dp" | ||
android:layout_height="wrap_content" | ||
android:gravity="center" | ||
android:layout_gravity="center" | ||
android:orientation="vertical" | ||
android:background="?attr/alertDialogDark" | ||
android:padding="10dp"> | ||
|
||
<RelativeLayout | ||
android:id="@+id/custom_image_frame" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="5dp"> | ||
|
||
<ImageView | ||
android:id="@+id/custom_image" | ||
android:layout_width="56dp" | ||
android:layout_height="56dp" | ||
android:visibility="gone" | ||
android:scaleType="fitCenter" | ||
tools:ignore="ContentDescription" /> | ||
|
||
<ImageView | ||
android:id="@+id/custom_big_image" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:visibility="gone" | ||
android:scaleType="fitCenter" | ||
tools:ignore="ContentDescription" /> | ||
|
||
<com.developer.progressx.ProgressWheel | ||
android:id="@+id/image_loading" | ||
android:layout_width="56dp" | ||
android:layout_height="56dp" | ||
android:layout_alignParentTop="true" | ||
android:layout_centerInParent="true" | ||
wheel:matProg_barColor="?attr/alertDialogProgressColor" | ||
wheel:matProg_progressIndeterminate="true" | ||
android:visibility="gone"/> | ||
</RelativeLayout> | ||
|
||
<FrameLayout | ||
android:id="@+id/error_frame" | ||
android:layout_width="56dp" | ||
android:layout_height="56dp" | ||
android:layout_marginTop="5dp" | ||
android:visibility="gone"> | ||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@drawable/error_circle" /> | ||
|
||
<ImageView | ||
android:id="@+id/error_x" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:contentDescription="@string/app_name" | ||
android:src="@drawable/error_center_x" | ||
android:scaleType="center" /> | ||
|
||
</FrameLayout> | ||
|
||
<FrameLayout | ||
android:id="@+id/success_frame" | ||
android:layout_width="56dp" | ||
android:layout_height="56dp" | ||
android:layout_marginTop="5dp" | ||
android:visibility="gone"> | ||
|
||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@drawable/success_bow" /> | ||
|
||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@drawable/success_circle" /> | ||
|
||
<ImageView | ||
android:id="@+id/success_x" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:contentDescription="@string/app_name" | ||
android:src="@drawable/ic_success_tick" | ||
android:scaleType="center" /> | ||
|
||
</FrameLayout> | ||
|
||
<FrameLayout | ||
android:id="@+id/warning_frame" | ||
android:layout_width="56dp" | ||
android:layout_height="56dp" | ||
android:layout_marginTop="5dp" | ||
android:visibility="gone"> | ||
|
||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@drawable/warning_circle" /> | ||
|
||
<ImageView | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:contentDescription="@string/app_name" | ||
android:src="@drawable/warning_sigh" | ||
android:scaleType="center" /> | ||
</FrameLayout> | ||
|
||
<FrameLayout | ||
android:id="@+id/progress_dialog" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="9dp" | ||
android:layout_gravity="center" | ||
android:orientation="vertical" | ||
android:visibility="gone"> | ||
|
||
<com.developer.progressx.ProgressWheel | ||
android:id="@+id/progressWheel" | ||
android:layout_width="80dp" | ||
android:layout_height="80dp" | ||
wheel:matProg_progressIndeterminate="true" | ||
android:layout_gravity="center" /> | ||
</FrameLayout> | ||
|
||
<TextView | ||
android:id="@+id/title_text" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:textSize="21sp" | ||
android:layout_marginTop="10dp" | ||
android:singleLine="true" | ||
android:visibility="gone" | ||
android:textColor="?attr/alertDialogTextColor" | ||
android:text="@string/dialog_default_title" /> | ||
|
||
<TextView | ||
android:id="@+id/content_text" | ||
android:layout_marginTop="10dp" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:textSize="18sp" | ||
android:visibility="gone" | ||
android:textColor="?attr/alertDialogContentTextColor"/> | ||
|
||
<FrameLayout | ||
android:id="@+id/custom_view_container" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="10dp" | ||
android:gravity="center" | ||
android:visibility="gone" | ||
tools:visibility="visible"> | ||
|
||
<com.google.android.material.textfield.TextInputLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:textColorHint="?attr/alertDialogInputFieldHintColor"> | ||
|
||
<com.google.android.material.textfield.TextInputEditText | ||
android:id="@+id/edit_text" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"/> | ||
</com.google.android.material.textfield.TextInputLayout> | ||
|
||
</FrameLayout> | ||
|
||
<LinearLayout | ||
android:layout_marginTop="10dp" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center"> | ||
|
||
<androidx.appcompat.widget.AppCompatButton | ||
style="@style/dialog_blue_button" | ||
android:id="@+id/cancel_button" | ||
android:text="@string/dialog_cancel" | ||
android:visibility="gone" | ||
android:layout_marginEnd="10dp" /> | ||
|
||
<androidx.appcompat.widget.AppCompatButton | ||
style="@style/dialog_blue_button" | ||
android:id="@+id/custom_confirm_button" | ||
android:visibility="gone" | ||
android:text="@string/dialog_ok"/> | ||
</LinearLayout> | ||
</LinearLayout> |
12 changes: 12 additions & 0 deletions
12
...032ed5885266caa7e12f983eb2f/transformed/out/res/values-sw600dp-v13/values-sw600dp-v13.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<style name="dialog_blue_button" parent="android:Widget.Button"> | ||
<item name="android:layout_width">wrap_content</item> | ||
<item name="android:layout_height">32dp</item> | ||
<item name="android:background">@drawable/button_background</item> | ||
<item name="android:textSize">16sp</item> | ||
<item name="android:paddingLeft">21dp</item> | ||
<item name="android:paddingRight">21dp</item> | ||
<item name="android:textColor">@color/button_text_color</item> | ||
</style> | ||
</resources> |
Binary file modified
BIN
+0 Bytes
(100%)
...5305db1871a96c5fdc67635c5a40c97/transformed/debug/com/developer/kalert/KAlertDialog$1.dex
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...5305db1871a96c5fdc67635c5a40c97/transformed/debug/com/developer/kalert/KAlertDialog$2.dex
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...5305db1871a96c5fdc67635c5a40c97/transformed/debug/com/developer/kalert/KAlertDialog$3.dex
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...5305db1871a96c5fdc67635c5a40c97/transformed/debug/com/developer/kalert/KAlertDialog$4.dex
Binary file not shown.
Binary file modified
BIN
+768 Bytes
(100%)
.../65305db1871a96c5fdc67635c5a40c97/transformed/debug/com/developer/kalert/KAlertDialog.dex
Binary file not shown.
Binary file modified
BIN
+1016 Bytes
(100%)
library/build/.transforms/fe441c1f99219d1618702754633d6934/transformed/classes/classes.dex
Binary file not shown.
Binary file modified
BIN
+614 Bytes
(100%)
library/build/intermediates/aar_main_jar/release/classes.jar
Binary file not shown.
Binary file modified
BIN
+1.36 KB
(100%)
library/build/intermediates/compile_library_classes_jar/debug/classes.jar
Binary file not shown.
Binary file modified
BIN
+1.74 KB
(100%)
library/build/intermediates/compile_library_classes_jar/release/classes.jar
Binary file not shown.
Binary file added
BIN
+11.3 KB
...intermediates/compiled_local_resources/debug/out/layout-sw600dp-v13_alert_dialog.xml.flat
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(100%)
library/build/intermediates/compiled_local_resources/debug/out/layout_alert_dialog.xml.flat
Binary file not shown.
Binary file added
BIN
+11.4 KB
...termediates/compiled_local_resources/release/out/layout-sw600dp-v13_alert_dialog.xml.flat
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.