Revision: 2439
http://sourceforge.net/p/swingme/code/2439
Author: yuranet
Date: 2021-04-26 10:42:05 +0000 (Mon, 26 Apr 2021)
Log Message:
-----------
show text component title
Modified Paths:
--------------
AndroidME/src_SwingME_plaf/net/yura/android/NativeAndroidTextField.java
Modified: AndroidME/src_SwingME_plaf/net/yura/android/NativeAndroidTextField.java
===================================================================
--- AndroidME/src_SwingME_plaf/net/yura/android/NativeAndroidTextField.java 2021-04-26 10:40:30 UTC (rev 2438)
+++ AndroidME/src_SwingME_plaf/net/yura/android/NativeAndroidTextField.java 2021-04-26 10:42:05 UTC (rev 2439)
@@ -655,6 +655,11 @@
});
}
}
+
+ String hint = textField.getTitle();
+ if (hint != null && !"".equals(hint)) {
+ editText.setHint(hint);
+ }
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|