Skip to content

Commit 9c60fbb

Browse files
New version v20.2.4
1 parent 521f175 commit 9c60fbb

File tree

396 files changed

+9676
-28112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

396 files changed

+9676
-28112
lines changed
Binary file not shown.
Binary file not shown.

.gradle/7.4/fileHashes/fileHashes.bin

3.91 KB
Binary file not shown.
0 Bytes
Binary file not shown.
986 Bytes
Binary file not shown.
Binary file not shown.
35 KB
Binary file not shown.

.gradle/file-system.probe

0 Bytes
Binary file not shown.

.idea/workspace.xml

+320-2,680
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
o/debug
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
i/
Binary file not shown.
Binary file not shown.

library/build/intermediates/compile_symbol_list/debug/R.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2722,6 +2722,7 @@ int id container 0x0
27222722
int id content 0x0
27232723
int id contentPanel 0x0
27242724
int id content_text 0x0
2725+
int id content_text2 0x0
27252726
int id contiguous 0x0
27262727
int id coordinator 0x0
27272728
int id cos 0x0

library/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Tue Oct 18 15:26:10 IST 2022
1+
#Tue Oct 18 21:14:49 IST 2022
22
com.developer.kalert.library-pngs-0\:/drawable-xxhdpi/ic_success_tick.png=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\library\\build\\intermediates\\packaged_res\\debug\\drawable-xxhdpi-v4\\ic_success_tick.png
33
com.developer.kalert.library-main-7\:/layout/alert_dialog.xml=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\library\\build\\intermediates\\packaged_res\\debug\\layout\\alert_dialog.xml
44
com.developer.kalert.library-main-7\:/drawable/success_circle.xml=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\library\\build\\intermediates\\packaged_res\\debug\\drawable\\success_circle.xml

library/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml

-11
This file was deleted.

library/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml

-79
This file was deleted.

library/build/intermediates/local_only_symbol_list/debug/R-def.txt

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ drawable warning_circle
5353
drawable warning_sigh
5454
id cancel_button
5555
id content_text
56+
id content_text2
5657
id custom_big_image
5758
id custom_confirm_button
5859
id custom_image

library/build/intermediates/packaged_res/debug/layout/alert_dialog.xml

+6
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@
149149
android:textColor="?attr/alertDialogContentTextColor"
150150
android:visibility="gone" />
151151

152+
<WebView
153+
android:id="@+id/content_text2"
154+
android:layout_width="wrap_content"
155+
android:layout_height="wrap_content"
156+
android:visibility="gone"/>
157+
152158
<FrameLayout
153159
android:id="@+id/custom_view_container"
154160
android:layout_width="match_parent"

library/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2723,6 +2723,7 @@ id container
27232723
id content
27242724
id contentPanel
27252725
id content_text
2726+
id content_text2
27262727
id contiguous
27272728
id coordinator
27282729
id cos
Binary file not shown.

library/src/main/java/com/developer/kalert/KAlertDialog.java

+50-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import android.content.Context;
66
import android.content.res.Configuration;
7+
import android.graphics.Color;
78
import android.graphics.Typeface;
89
import android.graphics.drawable.Drawable;
910

@@ -22,6 +23,7 @@
2223
import android.view.animation.Transformation;
2324

2425
import android.view.inputmethod.InputMethodManager;
26+
import android.webkit.WebView;
2527
import android.widget.FrameLayout;
2628
import android.widget.ImageView;
2729
import android.widget.LinearLayout;
@@ -50,14 +52,16 @@ public class KAlertDialog extends AlertDialog implements View.OnClickListener {
5052
private final Animation mOverlayOutAnim, mImageAnim;
5153

5254
private TextView mTitleTextView, mContentTextView;
55+
private WebView justifyContentTextView;
5356
private ImageView mErrorX, mSuccessTick, mCustomImage, mCustomBigImage;
5457
private Drawable mCustomImgDrawable;
5558
private AppCompatButton mConfirmButton, mCancelButton;
5659
private Drawable mColor, mCancelColor;
5760
private View mDialogView;
5861
private FrameLayout mCustomViewContainer;
5962

60-
private String mTitleText, mContentText, mCancelText, mConfirmText, mInputFieldHint;
63+
private String mTitleText, mContentText, justifyContentText, justifyContentTextColor,
64+
justifyContentTextSize, mCancelText, mConfirmText, mInputFieldHint;
6165
private String imageURL;
6266
private String titleFont, contentFont;
6367
private int displayType;
@@ -111,6 +115,7 @@ protected void onCreate(Bundle savedInstanceState) {
111115
mDialogView = Objects.requireNonNull(getWindow()).getDecorView().findViewById(android.R.id.content);
112116
mTitleTextView = findViewById(R.id.title_text);
113117
mContentTextView = findViewById(R.id.content_text);
118+
justifyContentTextView = findViewById(R.id.content_text2);
114119
mErrorFrame = findViewById(R.id.error_frame);
115120
assert mErrorFrame != null;
116121
mErrorX = mErrorFrame.findViewById(R.id.error_x);
@@ -135,6 +140,7 @@ protected void onCreate(Bundle savedInstanceState) {
135140
dialogTitleFont(titleFont);
136141
dialogContentFont(contentFont);
137142
setContentText(mContentText);
143+
justifyContentText(justifyContentText, justifyContentTextColor, justifyContentTextSize);
138144
setCancelText(mCancelText);
139145
setCancelText(mCancelText, cancelTextColor);
140146
setConfirmText(mConfirmText);
@@ -427,6 +433,43 @@ public KAlertDialog setContentText(String text) {
427433
return this;
428434
}
429435

436+
/**
437+
* This method is for test only use at your own risk
438+
* its not fully customizable like we can't use custom fonts
439+
* it's still under development. We respect to your contribution if you
440+
* have any idea then please contribute to this library.
441+
* @param content: dialog content text
442+
* @param textColor: write the name of text color same as we use in html css for ex: red, grey, white, black
443+
* @param fontSize: set the font size in px for example 16px, 18px, 20px,
444+
* @return ---
445+
*/
446+
public KAlertDialog justifyContentText(String content, String textColor, String fontSize) {
447+
justifyContentText = content;
448+
justifyContentTextColor = textColor;
449+
justifyContentTextSize = fontSize;
450+
if ( justifyContentTextView != null && justifyContentText != null &&
451+
justifyContentTextColor != null && justifyContentTextSize != null)
452+
{
453+
justifyContentTextView.setBackgroundColor(Color.TRANSPARENT);
454+
showJustifyText(true);
455+
String text;
456+
text = "<html><body><p ";
457+
text+= "style=\"color:";
458+
text+= textColor;
459+
text+= ";";
460+
text+= "font-size:";
461+
text+= justifyContentTextSize;
462+
text+= "\"";
463+
text+= "align=\"justify\">";
464+
text+= justifyContentText;
465+
text+= "</p></body></html>";
466+
justifyContentTextView.loadData(text, "text/html", "utf-8");
467+
} else {
468+
showJustifyText(false);
469+
}
470+
return this;
471+
}
472+
430473
public KAlertDialog showCancelButton ( boolean isShow){
431474
mShowCancel = isShow;
432475
if (mCancelButton != null) {
@@ -473,6 +516,12 @@ private void showContentText (boolean isShow) {
473516
}
474517
}
475518

519+
private void showJustifyText(boolean isShow) {
520+
if (justifyContentTextView != null) {
521+
justifyContentTextView.setVisibility(isShow ? View.VISIBLE : GONE);
522+
}
523+
}
524+
476525
@Deprecated
477526
public KAlertDialog setCancelClickListener (KAlertClickListener listener){
478527
mCancelClickListener = listener;

library/src/main/res/layout-sw600dp/alert_dialog.xml

+6
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@
149149
android:visibility="gone"
150150
android:textColor="?attr/alertDialogContentTextColor"/>
151151

152+
<WebView
153+
android:id="@+id/content_text2"
154+
android:layout_width="wrap_content"
155+
android:layout_height="wrap_content"
156+
android:visibility="gone"/>
157+
152158
<FrameLayout
153159
android:id="@+id/custom_view_container"
154160
android:layout_width="match_parent"

library/src/main/res/layout/alert_dialog.xml

+6
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@
149149
android:textColor="?attr/alertDialogContentTextColor"
150150
android:visibility="gone" />
151151

152+
<WebView
153+
android:id="@+id/content_text2"
154+
android:layout_width="wrap_content"
155+
android:layout_height="wrap_content"
156+
android:visibility="gone"/>
157+
152158
<FrameLayout
153159
android:id="@+id/custom_view_container"
154160
android:layout_width="match_parent"

sample/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.developer.kalert.alert"
88
minSdkVersion 19
99
targetSdkVersion 33
10-
versionCode 30
11-
versionName "20.2.3"
10+
versionCode 31
11+
versionName "20.2.4"
1212
}
1313

1414

sample/build/generated/source/buildConfig/debug/com/developer/kalert/alert/BuildConfig.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ public final class BuildConfig {
77
public static final boolean DEBUG = Boolean.parseBoolean("true");
88
public static final String APPLICATION_ID = "com.developer.kalert.alert";
99
public static final String BUILD_TYPE = "debug";
10-
public static final int VERSION_CODE = 29;
11-
public static final String VERSION_NAME = "20.2.2";
10+
public static final int VERSION_CODE = 30;
11+
public static final String VERSION_NAME = "20.2.3";
1212
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": 3,
3+
"artifactType": {
4+
"type": "APK",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.developer.kalert.alert",
8+
"variantName": "debug",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"attributes": [],
14+
"versionCode": 30,
15+
"versionName": "20.2.3",
16+
"outputFile": "sample-debug.apk"
17+
}
18+
],
19+
"elementType": "File"
20+
}
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#- File Locator -
2-
listingFile=../../../outputs/apk/debug/output-metadata.json
2+
listingFile=../../apk/debug/output-metadata.json
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
appMetadataVersion=1.1
2-
androidGradlePluginVersion=7.3.0
2+
androidGradlePluginVersion=7.3.1
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

sample/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Tue Oct 18 15:26:19 IST 2022
1+
#Tue Oct 18 21:14:52 IST 2022
22
com.developer.kalert.alert.sample-main-34\:/mipmap-xxxhdpi/ic_launcher.png=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\sample\\build\\intermediates\\merged_res\\debug\\mipmap-xxxhdpi_ic_launcher.png.flat
33
com.developer.kalert.alert.sample-main-34\:/mipmap-hdpi/ic_launcher.png=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\sample\\build\\intermediates\\merged_res\\debug\\mipmap-hdpi_ic_launcher.png.flat
44
com.developer.kalert.alert.sample-main-34\:/layout/sample_activity.xml=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\sample\\build\\intermediates\\merged_res\\debug\\layout_sample_activity.xml.flat

0 commit comments

Comments
 (0)