@@ -365,52 +365,53 @@ public unsafe void SetSelector (global::Android.Graphics.Drawables.Drawable sel)
365
365
366
366
public partial class ScrollingTabContainerView
367
367
{
368
- private partial class TabView
369
- {
370
- public override bool Selected {
371
- set {
372
- SetSelected ( value ) ;
373
- }
374
- get {
375
- return base . Selected ;
376
- }
377
- }
378
-
379
- static Delegate cb_setSelected_Z ;
380
- #pragma warning disable 0169
381
- static Delegate GetSetSelected_ZHandler ( )
382
- {
383
- if ( cb_setSelected_Z == null )
384
- cb_setSelected_Z = JNINativeWrapper . CreateDelegate ( ( Action < IntPtr , IntPtr , bool > ) n_SetSelected_Z ) ;
385
- return cb_setSelected_Z ;
386
- }
387
-
388
- static void n_SetSelected_Z ( IntPtr jnienv , IntPtr native__this , bool selected )
389
- {
390
- global ::Android . Support . V7 . Widget . ScrollingTabContainerView . TabView __this = global ::Java . Lang . Object . GetObject < global ::Android . Support . V7 . Widget . ScrollingTabContainerView . TabView > ( jnienv , native__this , JniHandleOwnership . DoNotTransfer ) ;
391
- __this . SetSelected ( selected ) ;
392
- }
393
- #pragma warning restore 0169
394
-
395
- static IntPtr id_setSelected_Z ;
396
- // Metadata.xml XPath method reference: path="/api/package[@name='android.support.v7.widget']/class[@name='ScrollingTabContainerView.TabView']/method[@name='setSelected' and count(parameter)=1 and parameter[1][@type='boolean']]"
397
- [ Register ( "setSelected" , "(Z)V" , "GetSetSelected_ZHandler" ) ]
398
- public unsafe void SetSelected ( bool selected )
399
- {
400
- if ( id_setSelected_Z == IntPtr . Zero )
401
- id_setSelected_Z = JNIEnv . GetMethodID ( class_ref , "setSelected" , "(Z)V" ) ;
402
- try {
403
- JValue * __args = stackalloc JValue [ 1 ] ;
404
- __args [ 0 ] = new JValue ( selected ) ;
405
-
406
- if ( GetType ( ) == ThresholdType )
407
- JNIEnv . CallVoidMethod ( ( ( global ::Java . Lang . Object ) this ) . Handle , id_setSelected_Z , __args ) ;
408
- else
409
- JNIEnv . CallNonvirtualVoidMethod ( ( ( global ::Java . Lang . Object ) this ) . Handle , ThresholdClass , JNIEnv . GetMethodID ( ThresholdClass , "setSelected" , "(Z)V" ) , __args ) ;
410
- } finally {
411
- }
412
- }
413
- }
368
+ // private partial class TabView
369
+ // {
370
+ // //public override bool Selected {
371
+ // public bool Selected {
372
+ // set {
373
+ // SetSelected (value);
374
+ // }
375
+ // get {
376
+ // return base.Selected;
377
+ // }
378
+ // }
379
+
380
+ // static Delegate cb_setSelected_Z;
381
+ //#pragma warning disable 0169
382
+ // static Delegate GetSetSelected_ZHandler ()
383
+ // {
384
+ // if (cb_setSelected_Z == null)
385
+ // cb_setSelected_Z = JNINativeWrapper.CreateDelegate ((Action<IntPtr, IntPtr, bool>)n_SetSelected_Z);
386
+ // return cb_setSelected_Z;
387
+ // }
388
+
389
+ // static void n_SetSelected_Z (IntPtr jnienv, IntPtr native__this, bool selected)
390
+ // {
391
+ // global::Android.Support.V7.Widget.ScrollingTabContainerView.TabView __this = global::Java.Lang.Object.GetObject<global::Android.Support.V7.Widget.ScrollingTabContainerView.TabView> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
392
+ // __this.SetSelected (selected);
393
+ // }
394
+ //#pragma warning restore 0169
395
+
396
+ // static IntPtr id_setSelected_Z;
397
+ // // Metadata.xml XPath method reference: path="/api/package[@name='android.support.v7.widget']/class[@name='ScrollingTabContainerView.TabView']/method[@name='setSelected' and count(parameter)=1 and parameter[1][@type='boolean']]"
398
+ // [Register ("setSelected", "(Z)V", "GetSetSelected_ZHandler")]
399
+ // public unsafe void SetSelected (bool selected)
400
+ // {
401
+ // if (id_setSelected_Z == IntPtr.Zero)
402
+ // id_setSelected_Z = JNIEnv.GetMethodID (class_ref, "setSelected", "(Z)V");
403
+ // try {
404
+ // JValue* __args = stackalloc JValue [1];
405
+ // __args [0] = new JValue (selected);
406
+
407
+ // if (GetType () == ThresholdType)
408
+ // JNIEnv.CallVoidMethod (((global::Java.Lang.Object)this).Handle, id_setSelected_Z, __args);
409
+ // else
410
+ // JNIEnv.CallNonvirtualVoidMethod (((global::Java.Lang.Object)this).Handle, ThresholdClass, JNIEnv.GetMethodID (ThresholdClass, "setSelected", "(Z)V"), __args);
411
+ // } finally {
412
+ // }
413
+ // }
414
+ // }
414
415
}
415
416
}
416
417
0 commit comments