diff --git a/xamarin-android-toc.html b/xamarin-android-toc.html
index bb06eef26..3467c345a 100644
--- a/xamarin-android-toc.html
+++ b/xamarin-android-toc.html
@@ -823,7 +823,7 @@
Release Notes
- - 2023 Volume 1 - v21.*
- 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
+ - 2023 Volume 2 - v22.*
- 2023 Volume 1 - v21.*
- 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
- 2019 Volume 3 - v17.3.0.*
- Weekly Nuget Release
diff --git a/xamarin-android/Release-Notes/v22.1.34.md b/xamarin-android/Release-Notes/v22.1.34.md
new file mode 100644
index 000000000..ae3ea47bc
--- /dev/null
+++ b/xamarin-android/Release-Notes/v22.1.34.md
@@ -0,0 +1,16 @@
+---
+title: Essential Studio for Xamarin.Android 2023 Volume 2 Main Release Release Notes
+description: Essential Studio for Xamarin.Android 2023 Volume 2 Main Release Release Notes
+platform: Xamarin.Android
+documentation: ug
+---
+
+# Essential Studio for Xamarin.Android Release Notes
+
+{% include release-info.html date="June 21, 2023" version="v22.1.34" %}
+
+{% directory path: _includes/release-notes/v22.1.34 %}
+
+{% include {{file.url}} %}
+
+{% enddirectory %}
\ No newline at end of file
diff --git a/xamarin-android/SfAutoComplete/highlighting-matched-text.md b/xamarin-android/SfAutoComplete/highlighting-matched-text.md
index 73da2cdc5..3ce028bee 100644
--- a/xamarin-android/SfAutoComplete/highlighting-matched-text.md
+++ b/xamarin-android/SfAutoComplete/highlighting-matched-text.md
@@ -1,12 +1,18 @@
---
layout : post
-title : MatchHighlighting in Syncfusion SfAutoComplete control for Xamarin.Android
-description : Learn how to highlight the matched text in SfAutoComplete
+title: MatchHighlighting text in Syncfusion SfAutoComplete control.
+description: Learn on how to highlight the matched text in SfAutoComplete for Xamarin.Android and also understood the highlight the matching characters in suggestion list
platform : Xamarin.Android
control : SfAutoComplete
documentation : ug
---
+{% banner %}
+
+{:.gradient_m}
+
+{% col_2_equal %}
+
# Highlighting matched text
Highlight matching characters in a suggestion list to pick an item with more clarity. There are two ways to highlight the matching text:
@@ -20,7 +26,7 @@ The text highlight can be indicated with various customizing styles by enabling
* HighlightedTextColor - sets the color of the highlighted text for differentiating the highlighted characters.
-* HighlightedTextFontAttributes - sets the FontAttributes of the highlighted text.
+* HighlightedTextFontTypeFace - sets the FontAttributes of the highlighted text.
## First Occurrence
@@ -30,19 +36,19 @@ It highlights the first position of the matching characters in the suggestion li
{% highlight C# %}
-countryAutoComplete.SuggestionMode=SuggestionMode.StartsWith;
-countryAutoComplete.TextHighlightMode=OccurrenceMode.FirstOccurrence;
-countryNameAutoComplete.HighlightedTextColor = Color.Red;
-countryNameAutoComplete.HighlightedTextFontAttributes = HighlightedTextFontAttributes.Bold;
+countryAutoComplete.SuggestionMode = SuggestionMode.StartsWith;
+countryAutoComplete.TextHighlightMode = OccurrenceMode.FirstOccurrence;
+countryAutoComplete.HighlightedTextColor = Color.Blue;
+countryAutoComplete.HighlightedTextFontTypeFace = TypefaceStyle.Bold;
{% endhighlight %}
{% endtabs %}
N> The default Color of HighlightedTextColor is Red.
- The default FontAttribute of HighlightedTextFontAttributes is None.
+ The default FontAttribute of HighlightedTextFontTypeFace is None.
-
+
## Multiple Occurrence
@@ -52,16 +58,16 @@ It highlights the matching character that are present everywhere in the suggesti
{% highlight C# %}
-countryAutoComplete.SuggestionMode=SuggestionMode.Contains;
-countryAutoComplete.TextHighlightMode=OccurrenceMode.MultipleOccurrence;
+countryAutoComplete.SuggestionMode = SuggestionMode.Contains;
+countryAutoComplete.TextHighlightMode = OccurrenceMode.MultipleOccurrence;
countryNameAutoComplete.HighlightedTextColor = Color.Red;
-countryNameAutoComplete.HighlightedTextFontAttributes = HighlightedTextFontAttributes.Bold;
+countryNameAutoComplete.HighlightedTextFontTypeFace = TypefaceStyle.Bold;
{% endhighlight %}
{% endtabs %}
-
+