HomeSort by relevance Sort by last modified time
    Searched defs:button (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/python/cpython3/Lib/test/
test_ttk_guionly.py 18 button = ttk.Button(root) variable
19 button.destroy()
20 del button
  /development/samples/ApiDemos/src/com/example/android/apis/app/
NotifyWithText.java 22 import android.widget.Button;
28 * When you push the button on this Activity, it creates a {@link Toast} object and
43 Button button; local
46 button = (Button) findViewById(R.id.short_notify);
47 button.setOnClickListener(new Button.OnClickListener() {
67 button = (Button) findViewById(R.id.long_notify)
    [all...]
IncomingMessageInterstitial.java 26 import android.widget.Button;
40 Button button = (Button) findViewById(R.id.notify_app); local
41 button.setOnClickListener(new Button.OnClickListener() {
SecureDialogActivity.java 26 import android.widget.Button;
70 // Handle click events on the button to show the dialog.
71 Button button = (Button)findViewById(R.id.show); local
72 button.setOnClickListener(this);
76 * Called when the button to show the dialog is clicked.
ContactsFilter.java 26 import android.widget.Button;
41 // Watch for button clicks.
42 Button button = (Button)findViewById(R.id.go); local
43 button.setOnClickListener(mGoListener);
DialogActivity.java 28 import android.widget.Button;
61 Button button = (Button)findViewById(R.id.add); local
62 button.setOnClickListener(mAddContentListener);
63 button = (Button)findViewById(R.id.remove);
64 button.setOnClickListener(mRemoveContentListener);
LocalSample.java 26 import android.widget.Button;
41 // Watch for button clicks.
42 Button button = (Button)findViewById(R.id.go); local
43 button.setOnClickListener(mGoListener);
NotifyingController.java 28 import android.widget.Button;
41 Button button = (Button) findViewById(R.id.notifyStart); local
42 button.setOnClickListener(mStartListener);
43 button = (Button) findViewById(R.id.notifyStop);
44 button.setOnClickListener(mStopListener);
SendResult.java 28 import android.widget.Button;
52 // Watch for button clicks.
53 Button button = (Button)findViewById(R.id.corky); local
54 button.setOnClickListener(mCorkyListener);
55 button = (Button)findViewById(R.id.violet);
56 button.setOnClickListener(mVioletListener);
  /external/python/cpython2/Lib/test/
test_ttk_guionly.py 23 button = ttk.Button(root) variable
24 button.destroy()
25 del button
  /developers/build/prebuilts/gradle/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
SettingsFragment.java 27 import android.widget.Button;
30 * A simple fragment that shows a button to reset the counter
38 Button button = (Button) view.findViewById(R.id.btn); local
39 button.setOnClickListener(new View.OnClickListener() {
  /developers/build/prebuilts/gradle/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 31 * This sample shows a view that is revealed when a button is clicked.
52 final View button = view.findViewById(R.id.button); local
54 button.setOnClickListener(new View.OnClickListener() {
  /developers/samples/android/ui/views/RevealEffect/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 31 * This sample shows a view that is revealed when a button is clicked.
52 final View button = view.findViewById(R.id.button); local
54 button.setOnClickListener(new View.OnClickListener() {
  /developers/samples/android/wearable/wear/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
SettingsFragment.java 27 import android.widget.Button;
30 * A simple fragment that shows a button to reset the counter
38 Button button = (Button) view.findViewById(R.id.btn); local
39 button.setOnClickListener(new View.OnClickListener() {
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackActivity.java 47 ImageButton button = (ImageButton) findViewById(R.id.button); local
48 button.setOnClickListener(new View.OnClickListener() {
TaskListActivity.java 51 ImageButton button = (ImageButton) findViewById(R.id.button); local
52 button.setOnClickListener(new View.OnClickListener() {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ProgressBar1.java 22 import android.widget.Button;
47 Button button = (Button) findViewById(R.id.increase); local
48 button.setOnClickListener(new Button.OnClickListener() {
56 button = (Button) findViewById(R.id.decrease);
57 button.setOnClickListener(new Button.OnClickListener()
    [all...]
ProgressBar3.java 26 import android.widget.Button;
48 Button button = (Button) findViewById(R.id.showIndeterminate); local
49 button.setOnClickListener(new View.OnClickListener() {
55 button = (Button) findViewById(R.id.showIndeterminateNoTitle);
56 button.setOnClickListener(new View.OnClickListener() {
TableLayout9.java 23 import android.widget.Button;
38 Button button = (Button) findViewById(R.id.toggle); local
39 button.setOnClickListener(new Button.OnClickListener() {
  /development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/
SettingsFragment.java 27 import android.widget.Button;
30 * A simple fragment that shows a button to reset the counter
38 Button button = (Button) view.findViewById(R.id.btn); local
39 button.setOnClickListener(new View.OnClickListener() {
  /development/samples/browseable/RevealEffectBasic/src/com.example.android.revealeffectbasic/
RevealEffectBasicFragment.java 32 * This sample shows a view that is revealed when a button is clicked.
49 View button = rootView.findViewById(R.id.button); local
52 button.setOnClickListener(new View.OnClickListener() {
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
HelpActivity.java 27 import android.widget.Button;
67 Button button = new Button(this); local
69 button.setText(topic);
71 button.setOnClickListener(new OnClickListener() {
79 content.addView(button);
  /cts/tests/tests/view/src/android/view/cts/
TouchDelegateTestActivity.java 26 import android.widget.Button;
42 * | (touches in this region should go to button + parent)
45 * | <-- Button top boundary
65 final Button button = findViewById(R.id.button); local
75 button.getLocationOnScreen(buttonLocation);
80 button.getHitRect(rect);
81 rect.top -= gap / 2; // TouchDelegate is halfway between button and parent
82 parent.setTouchDelegate(new TouchDelegate(rect, button));
    [all...]
  /development/samples/HeavyWeight/src/com/example/android/heavyweight/
HeavyWeight.java 23 import android.widget.Button;
35 Button button = (Button)findViewById(R.id.stop); local
36 button.setOnClickListener(mStopListener);
  /external/ImageMagick/Magick++/demo/
button.cpp 2 // Magick++ demo to generate a simple text button
36 // Button size
39 // Button background texture
42 // Button text
43 string text = "Button Text";
45 // Button text color
55 Image button; local
57 // Set button size
58 button.size( buttonSize );
61 button.read( backGround )
    [all...]

Completed in 391 milliseconds

1 2 3 4 5 6