HomeSort by relevance Sort by last modified time
    Searched refs:Button (Results 101 - 125 of 1134) sorted by null

1 2 3 45 6 7 8 91011>>

  /development/samples/training/testingfun/app/src/com/example/android/testingfun/lesson5/
SenderActivity.java 23 import android.widget.Button;
35 final Button sendMessageButton = (Button) findViewById(R.id.send_message_button);
  /external/chromium_org/ui/views/controls/button/
image_button_unittest.cc 7 #include "ui/views/controls/button/image_button.h"
26 ImageButton button(NULL);
29 EXPECT_TRUE(button.GetImageToPaint().isNull());
32 EXPECT_EQ("16x14", button.GetPreferredSize().ToString());
35 button.SetPreferredSize(gfx::Size(5, 15));
36 EXPECT_EQ("5x15", button.GetPreferredSize().ToString());
40 button.SetImage(CustomButton::STATE_NORMAL, &normal_image);
43 EXPECT_FALSE(button.GetImageToPaint().isNull());
44 EXPECT_EQ(10, button.GetImageToPaint().width());
45 EXPECT_EQ(20, button.GetImageToPaint().height())
    [all...]
  /external/chromium_org/ui/views/controls/scrollbar/
native_scroll_bar_views.h 11 #include "ui/views/controls/button/button.h"
50 virtual void ButtonPressed(Button* sender,
68 Button* prev_button_;
69 Button* next_button_;
  /frameworks/base/core/tests/coretests/src/android/os/
BrightnessLimit.java 28 import android.widget.Button;
43 Button b = (Button) findViewById(R.id.go);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGrid.java 22 import android.widget.Button;
39 public Button getButtonAt(int column, int row) {
46 return (Button) getColumn(column).getChildAt(row);
ListWithFooterViewAndNewLabelsTest.java 23 import android.widget.Button;
30 private Button mButton;
48 mButton = (Button) a.findViewById(R.id.button);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TimeDialogActivity.java 24 import android.widget.Button;
34 Button b = new Button(this);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
FadingHierarchy.java 23 import android.widget.Button;
28 Button mRemovingButton;
41 mRemovingButton = (Button) findViewById(R.id.removingButton);
OverlayTest.java 22 import android.widget.Button;
40 final Button fadingButton = (Button) findViewById(R.id.fadingButton);
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmRxHelp.java 24 import android.widget.Button;
40 Button btnBack = (Button) findViewById(R.id.btnBack);
  /hardware/ti/wpan/tools/FM/FmTxApp/src/com/ti/fmtxapp/
FmTxHelp.java 24 import android.widget.Button;
40 Button btnBack = (Button) findViewById(R.id.btnBack);
  /pdk/apps/HelloPDK/src/com/example/android/helloPDK/jni/
HelloJni.java 28 import android.widget.Button;
33 private Button mButton;
41 mButton = (Button)findViewById(R.id.button_hellojni);
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 26 import android.widget.Button;
40 Button buttonOk = (Button) activity.findViewById(R.id.ok);
41 Button buttonCancel = (Button) activity.findViewById(R.id.cancel);
60 assertSame(buttonCancel, (Button) activity.findViewById(0x9999));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout7.java 25 import android.widget.Button;
42 Button button = (Button) findViewById(R.id.toggle1); local
43 button.setOnClickListener(new Button.OnClickListener() {
49 button = (Button) findViewById(R.id.toggle2);
50 button.setOnClickListener(new Button.OnClickListener()
    [all...]
Focus5.java 21 import android.widget.Button;
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() {
TableLayout8.java 23 import android.widget.Button;
41 Button button = (Button) findViewById(R.id.toggle); local
42 button.setOnClickListener(new Button.OnClickListener() {
  /external/javassist/sample/rmi/
AlertDialog.java 14 Button b = new Button("OK");
  /frameworks/base/core/java/android/inputmethodservice/
ExtractButton.java 21 import android.widget.Button;
24 * Specialization of {@link Button} that ignores the window not being focused.
26 class ExtractButton extends Button {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
WizardDialogEx.java 22 import org.eclipse.swt.widgets.Button;
38 * Returns the cancel button.
43 public Button getCancelButtonEx() {
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 28 import android.widget.Button;
49 final Button alphaButton = (Button) findViewById(R.id.alphaButton);
50 final Button translateButton = (Button) findViewById(R.id.translateButton);
51 final Button rotateButton = (Button) findViewById(R.id.rotateButton);
52 final Button scaleButton = (Button) findViewById(R.id.scaleButton);
53 final Button setButton = (Button) findViewById(R.id.setButton)
    [all...]
  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmActivity.java 27 import android.widget.Button;
33 * When the user clicks the "Start Alarm Service" button, it triggers a repeating countdown
38 * When the user clicks the "Stop Alarm Service" button, it stops the countdown timer.
73 // Finds the button that starts the repeating countdown timer
74 Button button = (Button)findViewById(R.id.start_alarm); local
76 // Sets the listener for the start button
77 button.setOnClickListener(mStartAlarmListener);
79 // Finds the button that stops countdown time
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
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);
FinishAffinity.java 27 import android.widget.Button;
42 // Watch for button clicks.
43 Button button = (Button)findViewById(R.id.nest); local
44 button.setOnClickListener(mNestListener);
45 button = (Button)findViewById(R.id.finish);
46 button.setOnClickListener(mFinishListener);
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);

Completed in 520 milliseconds

1 2 3 45 6 7 8 91011>>