Posts by Durval Agnelo • 11 points
2 posts
-
0
votes1
answer41
viewsA: Xamarin Cross-Platform and "Native" Codes
Try to go in the manifest file and set the orientation for what activities you want: <activity android:name=".MainActivity" android:configChanges="orientation"…
-
1
votes1
answer42
viewsA: Edittext.Selectionchanged event on Android
The Onselectionchanged method is protected, so it can only be accessed by Edittext subclasses. Create an Edittext subclass by overwriting the method and constructs: public class MyEditText :…