コード例 #1
0
ファイル: CheckBox.java プロジェクト: ryanbis/AltBridge-bad
 /**
  * Specifies the text displayed by the checkbox.
  *
  * @param text new caption for checkbox
  */
 public void Text(String text) {
   if (resourceId != -1) {
     TextViewUtil.setText(
         (android.widget.CheckBox) container.$context().findViewById(resourceId), text);
   } else {
     TextViewUtil.setText(view, text);
   }
 }
コード例 #2
0
ファイル: TextBoxBase.java プロジェクト: ryanbis/AltBridge
 /**
  * Specifies the textbox contents.
  *
  * @param text new text in text box
  */
 public void Text(String text) {
   TextViewUtil.setText(view, text);
 }