HomeSort by relevance Sort by last modified time
    Searched refs:Button (Results 501 - 525 of 1156) sorted by null

<<21222324252627282930>>

  /packages/apps/Settings/src/com/android/settings/
CryptKeeperSettings.java 38 import android.widget.Button;
50 private Button mInitiateButton;
83 private Button.OnClickListener mInitiateListener = new Button.OnClickListener() {
105 mInitiateButton = (Button) mContentView.findViewById(R.id.initiate_encrypt);
MasterClear.java 39 import android.widget.Button;
62 private Button mInitiateButton;
110 private final Button.OnClickListener mInitiateListener = new Button.OnClickListener() {
120 * In its initial state, the activity presents a button for the user to
132 mInitiateButton = (Button) mContentView.findViewById(R.id.initiate_master_clear);
  /packages/apps/SpeechRecorder/src/com/android/speechrecorder/
SpeechRecorderActivity.java 28 import android.widget.Button;
50 private Button mRecord;
51 private Button mRedo;
75 mRecord = (Button) findViewById(R.id.recordButton);
76 mRedo = (Button) findViewById(R.id.redoButton);
200 // to avoid the button click
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsEdit.java 31 import android.widget.Button;
67 private Button mEntryButton;
68 private Button mCancelButton;
119 mEntryButton = (Button)findViewById(R.id.addButton);
120 mCancelButton = (Button)findViewById(R.id.cancelButton);
177 * Change the state of the "Add" button into the depending state of input area.
188 /* Enable/disable the "Add" button */
204 /* Enable/disable the "Add" button */
  /packages/services/Telephony/src/com/android/phone/
IccNetworkDepersonalizationPanel.java 32 import android.widget.Button;
63 private Button mUnlockButton;
64 private Button mDismissButton;
132 mUnlockButton = (Button) findViewById(R.id.ndp_unlock);
135 // The "Dismiss" button is present in some (but not all) products,
137 mDismissButton = (Button) findViewById(R.id.ndp_dismiss);
139 if (DBG) log("Enabling 'Dismiss' button...");
143 if (DBG) log("Removing 'Dismiss' button...");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeySelectionPage.java 31 import org.eclipse.swt.widgets.Button;
58 private Button mUseExistingKey;
59 private Button mCreateKey;
78 mUseExistingKey = new Button(composite, SWT.RADIO);
100 mCreateKey = new Button(composite, SWT.RADIO);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
TestTargetPage.java 39 import org.eclipse.swt.widgets.Button;
49 /** Flag used when setting button/text state manually to ignore listener updates */
53 private Button mCurrentRadioButton;
54 private Button mExistingRadioButton;
78 mCurrentRadioButton = new Button(container, SWT.RADIO);
83 mExistingRadioButton = new Button(container, SWT.RADIO);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleReadWriteActivity.java 29 import android.widget.Button;
74 ((Button) findViewById(R.id.ble_write)).setOnClickListener(new OnClickListener() {
86 ((Button) findViewById(R.id.ble_read)).setOnClickListener(new OnClickListener() {
BleScannerHardwareScanFilterActivity.java 32 import android.widget.Button;
59 ((Button) findViewById(R.id.ble_scan_with_filter))
71 ((Button) findViewById(R.id.ble_scan_without_filter))
ConnectionAccessClientActivity.java 32 import android.widget.Button;
44 private Button mPickServerButton;
63 mPickServerButton = (Button) findViewById(R.id.bt_pick_server_button);
ConnectionAccessServerActivity.java 36 import android.widget.Button;
69 Button makeDiscoverableButton = (Button) findViewById(R.id.bt_make_discoverable_button);
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
MainActivity.java 31 import android.widget.Button;
44 * as a {@link SamplePresentation}) is shown on the preferred display. A button
74 // Enable clicks on the 'change color' button
75 mButton = (Button) findViewById(R.id.button1);
281 private Button mButton;
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
DeviceListActivity.java 31 import android.widget.Button;
78 // Initialize the button to perform device discovery
79 Button scanButton = (Button) findViewById(R.id.button_scan);
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 29 import android.widget.Button;
101 // Set up the 'animate' button, when it is clicked the view is animated with the options
103 Button button = (Button) v.findViewById(R.id.animateButton); local
104 button.setOnClickListener(new View.OnClickListener() {
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java 27 import android.widget.Button;
54 * Button to show a notification.
56 private Button mShowNotificationButton;
91 mShowNotificationButton = (Button) view.findViewById(R.id.show_notification_button);
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 31 import android.widget.Button;
51 private Button captureButton;
59 captureButton = (Button) findViewById(R.id.button_capture);
63 * The capture button controls all user interaction. When recording, the button click
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
DeviceListActivity.java 31 import android.widget.Button;
78 // Initialize the button to perform device discovery
79 Button scanButton = (Button) findViewById(R.id.button_scan);
  /developers/samples/android/media/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
MainActivity.java 31 import android.widget.Button;
44 * as a {@link SamplePresentation}) is shown on the preferred display. A button
74 // Enable clicks on the 'change color' button
75 mButton = (Button) findViewById(R.id.button1);
281 private Button mButton;
  /developers/samples/android/media/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 31 import android.widget.Button;
51 private Button captureButton;
59 captureButton = (Button) findViewById(R.id.button_capture);
63 * The capture button controls all user interaction. When recording, the button click
  /developers/samples/android/ui/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 29 import android.widget.Button;
101 // Set up the 'animate' button, when it is clicked the view is animated with the options
103 Button button = (Button) v.findViewById(R.id.animateButton); local
104 button.setOnClickListener(new View.OnClickListener() {
  /developers/samples/android/ui/notifications/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java 27 import android.widget.Button;
54 * Button to show a notification.
56 private Button mShowNotificationButton;
91 mShowNotificationButton = (Button) view.findViewById(R.id.show_notification_button);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationSeeking.java 40 import android.widget.Button;
46 * UI allows you to set the position of the animation. Pressing the Run button will play from
63 Button starter = (Button) findViewById(R.id.startButton);
CustomEvaluator.java 38 import android.widget.Button;
51 Button starter = (Button) findViewById(R.id.startButton);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SearchInvoke.java 32 import android.widget.Button;
40 Button mStartSearch;
66 mStartSearch = (Button) findViewById(R.id.btn_start_search);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessagingDemo.java 36 import android.widget.Button;
94 // Watch for send button clicks and send text messages.
95 Button sendButton = (Button) findViewById(R.id.sms_send_message);

Completed in 1524 milliseconds

<<21222324252627282930>>