Hi:
@DonManfred wrapped a library to use emojicons in a EditText.
https://www.b4x.com/android/forum/threads/msemoji-v1-0-0.53787/#content
I go to the github project of the original library and I saw than EmojiEditText inherids the object EditText, but in the wrapped library, the methods of the original library are missing.
I was reading in another forum, that "he" must add EditText source code for support this methods (and wrap the needed, I supose), but I never wrap a library (but I try a lot of times to do it).
Can anyone tell how we can access to the methods of the EditText object.
I wan't disturb @DonManfred, but its a good info because he is wrapping a lots of libs.
Thanks a lot.
@DonManfred wrapped a library to use emojicons in a EditText.
https://www.b4x.com/android/forum/threads/msemoji-v1-0-0.53787/#content
I go to the github project of the original library and I saw than EmojiEditText inherids the object EditText, but in the wrapped library, the methods of the original library are missing.
B4X:
public class EmojiEditText extends EditText {
private static final String TAG = EmojiEditText.class.getName();
private static final String START_CHAR = "[";
...
I was reading in another forum, that "he" must add EditText source code for support this methods (and wrap the needed, I supose), but I never wrap a library (but I try a lot of times to do it).
Can anyone tell how we can access to the methods of the EditText object.
I wan't disturb @DonManfred, but its a good info because he is wrapping a lots of libs.
Thanks a lot.