EditText: implement addTextChangedListener()

This commit is contained in:
Julian Winkler
2023-09-01 13:03:40 +02:00
parent 071538de02
commit 30b990f60a
3 changed files with 43 additions and 0 deletions

View File

@@ -215,6 +215,14 @@ JNIEXPORT jlong JNICALL Java_android_widget_EditText_native_1constructor
JNIEXPORT jstring JNICALL Java_android_widget_EditText_native_1getText
(JNIEnv *, jobject, jlong);
/*
* Class: android_widget_EditText
* Method: native_addTextChangedListener
* Signature: (JLandroid/text/TextWatcher;)V
*/
JNIEXPORT void JNICALL Java_android_widget_EditText_native_1addTextChangedListener
(JNIEnv *, jobject, jlong, jobject);
#ifdef __cplusplus
}
#endif