Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Mono.Android/Test/Resources/layout/Main.axml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
android:layout_height="wrap_content"
android:editable="false"
/>
<EditText
android:id="@+id/edit_text"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ScrollView
android:id="@+id/my_scroll_view"
android:layout_width="fill_parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ protected override void OnCreate (Bundle bundle)
// ignore
};

// test https://github.com/xamarin/xamarin-android/issues/3263
edit_text.TextChanged += delegate { };

csharp_simple_fragment.AllowEnterTransitionOverlap = true;
csharp_partial_assembly.AllowEnterTransitionOverlap = true;
csharp_full_assembly.AllowEnterTransitionOverlap = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@ void PreserveInvoker (TypeDefinition type)
if (invoker == null)
return;

Annotations.Mark (invoker);

PreserveIntPtrConstructor (invoker);
PreserveInterfaceMethods (type, invoker);
}
Expand Down
6 changes: 6 additions & 0 deletions tests/Runtime-MultiDex/Resources/layout/Main.axml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
android:layout_height="wrap_content"
android:editable="false"
/>
<EditText
android:id="@+id/edit_text"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ScrollView
android:id="@+id/my_scroll_view"
android:layout_width="fill_parent"
Expand Down