Skip to content
This repository was archived by the owner on May 29, 2024. It is now read-only.

Commit d7bb60c

Browse files
authored
Update docs against dotnet/android@525b080d (#45)
Changes: dotnet/android@4e2ec04...525b080 Notable generator changes: * dotnet/java-interop@3a97705: [Java.Interop.Tools.JavaSource] Handle common parsing exceptions
1 parent 814988c commit d7bb60c

Some content is hidden

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

46 files changed

+1249
-323
lines changed

docs/Mono.Android/en/Android.AccessibilityServices/AccessibilityService+MagnificationController.xml

+17-5
Original file line numberDiff line numberDiff line change
@@ -610,12 +610,24 @@
610610
<Parameter Name="animate" Type="System.Boolean" />
611611
</Parameters>
612612
<Docs>
613-
<param name="scale">To be added.</param>
614-
<param name="animate">To be added.</param>
615-
<summary>To be added.</summary>
616-
<returns>To be added.</returns>
613+
<param name="scale">the magnification scale to set, must be &gt;= 1 and &lt;= 8</param>
614+
<param name="animate">
615+
<c>true</c> to animate from the current scale or
616+
<c>false</c> to set the scale immediately</param>
617+
<summary>Sets the magnification scale.</summary>
618+
<returns>
619+
<c>true</c> on success, <c>false</c> on failure</returns>
617620
<remarks>
618-
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
621+
<para>
622+
<format type="text/html">
623+
<a href="https://developer.android.com/reference/android/accessibilityservice/AccessibilityService.MagnificationController#setScale(float,%20boolean)" title="Reference documentation">Java documentation for <code>android.accessibilityservice.AccessibilityService.MagnificationController.setScale(float, boolean)</code>.</a>
624+
</format>
625+
</para>
626+
<para>
627+
Portions of this page are modifications based on work created and shared by the
628+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
629+
and used according to terms described in the
630+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
619631
</remarks>
620632
</Docs>
621633
</Member>

docs/Mono.Android/en/Android.AccessibilityServices/InputMethod+AccessibilityInputConnection.xml

+48-10
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,30 @@
100100
<Parameter Name="textAttribute" Type="Android.Views.InputMethods.TextAttribute" />
101101
</Parameters>
102102
<Docs>
103-
<param name="text">To be added.</param>
104-
<param name="newCursorPosition">To be added.</param>
105-
<param name="textAttribute">To be added.</param>
106-
<summary>To be added.</summary>
107-
<remarks>To be added.</remarks>
103+
<param name="text">The text to commit. This may include styles.</param>
104+
<param name="newCursorPosition">The new cursor position around the text,
105+
in Java characters. If &gt; 0, this is relative to the end
106+
of the text - 1; if &lt;= 0, this is relative to the start
107+
of the text. So a value of 1 will always advance the cursor
108+
to the position after the full text being inserted. Note that
109+
this means you can't position the cursor within the text,
110+
because the editor can make modifications to the text
111+
you are providing so it is not possible to correctly specify
112+
locations there.</param>
113+
<param name="textAttribute">The extra information about the text.</param>
114+
<summary>Commit text to the text box and set the new cursor position.</summary>
115+
<remarks>
116+
<para>
117+
<format type="text/html">
118+
<a href="https://developer.android.com/reference/android/accessibilityservice/InputMethod.AccessibilityInputConnection#commitText(java.lang.CharSequence,%20int,%20android.view.inputmethod.TextAttribute)" title="Reference documentation">Java documentation for <code>android.accessibilityservice.InputMethod.AccessibilityInputConnection.commitText(java.lang.CharSequence, int, android.view.inputmethod.TextAttribute)</code>.</a>
119+
</format>
120+
</para>
121+
<para>
122+
Portions of this page are modifications based on work created and shared by the
123+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
124+
and used according to terms described in the
125+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
126+
</remarks>
108127
</Docs>
109128
</Member>
110129
<Member MemberName="CommitText">
@@ -126,11 +145,30 @@
126145
<Parameter Name="textAttribute" Type="Android.Views.InputMethods.TextAttribute" />
127146
</Parameters>
128147
<Docs>
129-
<param name="text">To be added.</param>
130-
<param name="newCursorPosition">To be added.</param>
131-
<param name="textAttribute">To be added.</param>
132-
<summary>To be added.</summary>
133-
<remarks>To be added.</remarks>
148+
<param name="text">The text to commit. This may include styles.</param>
149+
<param name="newCursorPosition">The new cursor position around the text,
150+
in Java characters. If &gt; 0, this is relative to the end
151+
of the text - 1; if &lt;= 0, this is relative to the start
152+
of the text. So a value of 1 will always advance the cursor
153+
to the position after the full text being inserted. Note that
154+
this means you can't position the cursor within the text,
155+
because the editor can make modifications to the text
156+
you are providing so it is not possible to correctly specify
157+
locations there.</param>
158+
<param name="textAttribute">The extra information about the text.</param>
159+
<summary>Commit text to the text box and set the new cursor position.</summary>
160+
<remarks>
161+
<para>
162+
<format type="text/html">
163+
<a href="https://developer.android.com/reference/android/accessibilityservice/InputMethod.AccessibilityInputConnection#commitText(java.lang.CharSequence,%20int,%20android.view.inputmethod.TextAttribute)" title="Reference documentation">Java documentation for <code>android.accessibilityservice.InputMethod.AccessibilityInputConnection.commitText(java.lang.CharSequence, int, android.view.inputmethod.TextAttribute)</code>.</a>
164+
</format>
165+
</para>
166+
<para>
167+
Portions of this page are modifications based on work created and shared by the
168+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
169+
and used according to terms described in the
170+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
171+
</remarks>
134172
</Docs>
135173
</Member>
136174
<Member MemberName="DeleteSurroundingText">

docs/Mono.Android/en/Android.Animation/LayoutTransition.xml

+10-1
Original file line numberDiff line numberDiff line change
@@ -1637,7 +1637,16 @@
16371637
<summary>Gets the current list of listeners for layout changes.</summary>
16381638
<value>To be added.</value>
16391639
<remarks>
1640-
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
1640+
<para>
1641+
<format type="text/html">
1642+
<a href="https://developer.android.com/reference/android/animation/LayoutTransition#getTransitionListeners()" title="Reference documentation">Java documentation for <code>android.animation.LayoutTransition.getTransitionListeners()</code>.</a>
1643+
</format>
1644+
</para>
1645+
<para>
1646+
Portions of this page are modifications based on work created and shared by the
1647+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
1648+
and used according to terms described in the
1649+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
16411650
</remarks>
16421651
<since version="Added in API level 11" />
16431652
</Docs>

docs/Mono.Android/en/Android.App/Activity.xml

+55-17
Original file line numberDiff line numberDiff line change
@@ -9913,11 +9913,20 @@
99139913
<Docs>
99149914
<param name="child">The activity making the call.</param>
99159915
<param name="intent">The intent to start.</param>
9916-
<param name="requestCode">Reply request code. </param>
9917-
<summary>Same as calling <format type="text/html"><a href="https://docs.microsoft.com/en-us/search/index?search='M:Android App Activity StartActivityFromChild(Android App Activity,Android Content Intent,Android Content Intent,Android Content Intent)';scope=Xamarin" title="M:Android.App.Activity.StartActivityFromChild(Android.App.Activity,Android.Content.Intent,Android.Content.Intent,Android.Content.Intent)">M:Android.App.Activity.StartActivityFromChild(Android.App.Activity,Android.Content.Intent,Android.Content.Intent,Android.Content.Intent)</a></format>
9918-
with no options.</summary>
9916+
<param name="requestCode">Reply request code. &lt; 0 if reply is not requested.</param>
9917+
<summary>Same as calling <c>#startActivityFromChild(Activity, Intent, int, Bundle)</c>
9918+
with no options.</summary>
99199919
<remarks>
9920-
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
9920+
<para>
9921+
<format type="text/html">
9922+
<a href="https://developer.android.com/reference/android/app/Activity#startActivityFromChild(android.app.Activity,%20android.content.Intent,%20int)" title="Reference documentation">Java documentation for <code>android.app.Activity.startActivityFromChild(android.app.Activity, android.content.Intent, int)</code>.</a>
9923+
</format>
9924+
</para>
9925+
<para>
9926+
Portions of this page are modifications based on work created and shared by the
9927+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
9928+
and used according to terms described in the
9929+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
99219930
</remarks>
99229931
<since version="Added in API level 1" />
99239932
<exception cref="T:Android.Content.ActivityNotFoundException" />
@@ -9956,13 +9965,23 @@
99569965
<Docs>
99579966
<param name="child">The activity making the call.</param>
99589967
<param name="intent">The intent to start.</param>
9959-
<param name="requestCode">Reply request code. </param>
9968+
<param name="requestCode">Reply request code. &lt; 0 if reply is not requested.</param>
99609969
<param name="options">Additional options for how the Activity should be started.
9961-
See <see cref="M:Android.Content.Context.StartActivity(Android.Content.Intent,Android.OS.Bundle)" /> for more details.</param>
9970+
See <c>android.content.Context#startActivity(Intent, Bundle)</c>
9971+
Context.startActivity(Intent, Bundle)} for more details.</param>
99629972
<summary>This is called when a child activity of this one calls its
9963-
<format type="text/html"><a href="https://docs.microsoft.com/en-us/search/index?search='M:Android Content Context StartActivity';scope=Xamarin" title="M:Android.Content.Context.StartActivity">M:Android.Content.Context.StartActivity</a></format> or <see cref="M:Android.App.Activity.StartActivityForResult(Android.Content.Intent,System.Int32)" /> method.</summary>
9973+
<c>#startActivity</c> or <c>#startActivityForResult</c> method.</summary>
99649974
<remarks>
9965-
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
9975+
<para>
9976+
<format type="text/html">
9977+
<a href="https://developer.android.com/reference/android/app/Activity#startActivityFromChild(android.app.Activity,%20android.content.Intent,%20int,%20android.os.Bundle)" title="Reference documentation">Java documentation for <code>android.app.Activity.startActivityFromChild(android.app.Activity, android.content.Intent, int, android.os.Bundle)</code>.</a>
9978+
</format>
9979+
</para>
9980+
<para>
9981+
Portions of this page are modifications based on work created and shared by the
9982+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
9983+
and used according to terms described in the
9984+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
99669985
</remarks>
99679986
<since version="Added in API level 16" />
99689987
<exception cref="T:Android.Content.ActivityNotFoundException" />
@@ -10000,11 +10019,20 @@
1000010019
<Docs>
1000110020
<param name="fragment">The fragment making the call.</param>
1000210021
<param name="intent">The intent to start.</param>
10003-
<param name="requestCode">Reply request code. </param>
10004-
<summary>Same as calling <format type="text/html"><a href="https://docs.microsoft.com/en-us/search/index?search='M:Android App Activity StartActivityFromFragment(Android App Fragment,Android Content Intent,Android Content Intent,Android Content Intent)';scope=Xamarin" title="M:Android.App.Activity.StartActivityFromFragment(Android.App.Fragment,Android.Content.Intent,Android.Content.Intent,Android.Content.Intent)">M:Android.App.Activity.StartActivityFromFragment(Android.App.Fragment,Android.Content.Intent,Android.Content.Intent,Android.Content.Intent)</a></format>
10005-
with no options.</summary>
10022+
<param name="requestCode">Reply request code. &lt; 0 if reply is not requested.</param>
10023+
<summary>Same as calling <c>#startActivityFromFragment(Fragment, Intent, int, Bundle)</c>
10024+
with no options.</summary>
1000610025
<remarks>
10007-
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
10026+
<para>
10027+
<format type="text/html">
10028+
<a href="https://developer.android.com/reference/android/app/Activity#startActivityFromFragment(android.app.Fragment,%20android.content.Intent,%20int)" title="Reference documentation">Java documentation for <code>android.app.Activity.startActivityFromFragment(android.app.Fragment, android.content.Intent, int)</code>.</a>
10029+
</format>
10030+
</para>
10031+
<para>
10032+
Portions of this page are modifications based on work created and shared by the
10033+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
10034+
and used according to terms described in the
10035+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
1000810036
</remarks>
1000910037
<since version="Added in API level 11" />
1001010038
<exception cref="T:Android.Content.ActivityNotFoundException" />
@@ -10044,14 +10072,24 @@
1004410072
<Docs>
1004510073
<param name="fragment">The fragment making the call.</param>
1004610074
<param name="intent">The intent to start.</param>
10047-
<param name="requestCode">Reply request code. </param>
10075+
<param name="requestCode">Reply request code. &lt; 0 if reply is not requested.</param>
1004810076
<param name="options">Additional options for how the Activity should be started.
10049-
See <see cref="M:Android.Content.Context.StartActivity(Android.Content.Intent,Android.OS.Bundle)" /> for more details.</param>
10077+
See <c>android.content.Context#startActivity(Intent, Bundle)</c>
10078+
Context.startActivity(Intent, Bundle)} for more details.</param>
1005010079
<summary>This is called when a Fragment in this activity calls its
10051-
<see cref="M:Android.App.Fragment.StartActivity(Android.Content.Intent)" /> or <see cref="M:Android.App.Fragment.StartActivityForResult(Android.Content.Intent,System.Int32)" />
10052-
method.</summary>
10080+
<c>Fragment#startActivity</c> or <c>Fragment#startActivityForResult</c>
10081+
method.</summary>
1005310082
<remarks>
10054-
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
10083+
<para>
10084+
<format type="text/html">
10085+
<a href="https://developer.android.com/reference/android/app/Activity#startActivityFromFragment(android.app.Fragment,%20android.content.Intent,%20int,%20android.os.Bundle)" title="Reference documentation">Java documentation for <code>android.app.Activity.startActivityFromFragment(android.app.Fragment, android.content.Intent, int, android.os.Bundle)</code>.</a>
10086+
</format>
10087+
</para>
10088+
<para>
10089+
Portions of this page are modifications based on work created and shared by the
10090+
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
10091+
and used according to terms described in the
10092+
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
1005510093
</remarks>
1005610094
<since version="Added in API level 16" />
1005710095
<exception cref="T:Android.Content.ActivityNotFoundException" />

0 commit comments

Comments
 (0)