Hi!
I have an Android example I want to put into Xamarin.Forms:
<com.nativeandroidproject.view
android:id="@+id/widget"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
NativeAndroidView widget = (NativeAndroidView) findViewById(R.id.widget);
The problem is that I can't create an object from that NativeAndroidView
inside of my custom renderer and pass it to SetNativeView()
, the API from the NativeAndroidView
isn't supporting this. So I was wondering how I can put this together in Forms.