ScrollView: implement custom onMeasure()

This commit is contained in:
Julian Winkler
2024-03-11 18:23:38 +01:00
parent 9fbfe9dea1
commit c0bc875c11
3 changed files with 20 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ JNIEXPORT jlong JNICALL Java_android_widget_ScrollView_native_1constructor(JNIEn
GtkWidget *scrolled_window = gtk_scrolled_window_new();
wrapper_widget_set_child(WRAPPER_WIDGET(wrapper), scrolled_window);
gtk_widget_set_name(scrolled_window, "ScrollView");
(*env)->SetBooleanField(env, this, _FIELD_ID(_CLASS(this), "haveCustomMeasure", "Z"), true);
return _INTPTR(scrolled_window);
}