HomeSort by relevance Sort by last modified time
    Searched refs:findViewById (Results 76 - 100 of 2359) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/samples/Support7Demos/src/com/example/android/supportv7/view/
CardViewActivity.java 110 mInfoText = (TextView) findViewById(R.id.info_text);
111 mCardView = (CardView) findViewById(R.id.card_view);
112 mCornerRadiusSeekBar = (SeekBar) findViewById(R.id.corner_radius_seek_bar);
116 mWidthSeekBar = (SeekBar) findViewById(R.id.width_seek_bar);
121 mHeightSeekBar = (SeekBar) findViewById(R.id.height_seek_bar);
125 mElevationSeekBar = (SeekBar) findViewById(R.id.elevation_seek_bar);
129 mMaxElevationSeekBar = (SeekBar) findViewById(R.id.max_elevation_seek_bar);
133 mAlphaSeekBar = (SeekBar) findViewById(R.id.alpha_seek_bar);
137 RadioGroup rb = (RadioGroup) findViewById(R.id.select_target_radio);
150 View content = findViewById(android.R.id.content)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/frame/
FrameLayoutGravityTest.java 49 mParent = activity.findViewById(R.id.parent);
51 mLeftView = activity.findViewById(R.id.left);
52 mRightView = activity.findViewById(R.id.right);
53 mCenterHorizontalView = activity.findViewById(R.id.center_horizontal);
55 mLeftCenterVerticalView = activity.findViewById(R.id.left_center_vertical);
56 mRighCenterVerticalView = activity.findViewById(R.id.right_center_vertical);
57 mCenterView = activity.findViewById(R.id.center);
59 mLeftBottomView = activity.findViewById(R.id.left_bottom);
60 mRightBottomView = activity.findViewById(R.id.right_bottom);
61 mCenterHorizontalBottomView = activity.findViewById(R.id.center_horizontal_bottom)
    [all...]
FrameLayoutMarginTest.java 45 mParent = activity.findViewById(R.id.parent);
47 mLeftView = activity.findViewById(R.id.left);
48 mRightView = activity.findViewById(R.id.right);
49 mTopView = activity.findViewById(R.id.top);
50 mBottomView = activity.findViewById(R.id.bottom);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
ContactsExpansion.java 52 ViewGroup contactsContainer = (ViewGroup) findViewById(R.id.contactsContainer);
67 ImageView thumbnailView = (ImageView) contactItem.findViewById(R.id.contact_picture);
69 ((TextView)contactItem.findViewById(R.id.contact_name)).setText(contactsData[dataIndex++]);
70 ((TextView)contactItem.findViewById(R.id.contact_street)).
72 ((TextView)contactItem.findViewById(R.id.contact_city)).setText(contactsData[dataIndex++]);
73 ((TextView)contactItem.findViewById(R.id.contact_phone)).setText(contactsData[dataIndex++]);
74 ((TextView)contactItem.findViewById(R.id.contact_email)).setText(contactsData[dataIndex++]);
106 View expandedContainer = currentItem.findViewById(R.id.expanded_info);
109 (ImageView) currentItem.findViewById(R.id.contact_picture);
112 ImageView arrow = (ImageView) currentItem.findViewById(R.id.contact_arrow)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ProgressBar1.java 43 final ProgressBar progressHorizontal = (ProgressBar) findViewById(R.id.progress_horizontal);
47 Button button = (Button) findViewById(R.id.increase);
56 button = (Button) findViewById(R.id.decrease);
65 button = (Button) findViewById(R.id.increase_secondary);
74 button = (Button) findViewById(R.id.decrease_secondary);
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
LayoutChangesActivity.java 50 mContainerView = (ViewGroup) findViewById(R.id.container);
71 findViewById(android.R.id.empty).setVisibility(View.GONE);
85 ((TextView) newView.findViewById(android.R.id.text1)).setText(
89 newView.findViewById(R.id.delete_button).setOnClickListener(new View.OnClickListener() {
99 findViewById(android.R.id.empty).setVisibility(View.VISIBLE);
  /frameworks/base/core/tests/coretests/src/android/view/
PopupWindowVisibility.java 46 mFrame = findViewById(R.id.frame);
48 mHide = (Button) findViewById(R.id.hide);
51 mShow = (Button) findViewById(R.id.show);
54 Spinner spinner = (Spinner) findViewById(R.id.spinner);
62 AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.auto);
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 31 holder.appName = (TextView) convertView.findViewById(R.id.app_name);
32 holder.appIcon = (ImageView) convertView.findViewById(R.id.app_icon);
33 holder.appSize = (TextView) convertView.findViewById(R.id.app_size);
34 holder.disabled = (TextView) convertView.findViewById(R.id.app_disabled);
35 holder.checkBox = (CheckBox) convertView.findViewById(R.id.app_on_sdcard);
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/
SendTestBroadcastActivity.java 59 EditText messageIdField = (EditText) findViewById(R.id.message_id);
79 EditText categoryField = (EditText) findViewById(R.id.category_id);
95 EditText messageIdField = (EditText) findViewById(R.id.message_id);
99 EditText categoryIdField = (EditText) findViewById(R.id.category_id);
103 Button etwsNormalTypeButton = (Button) findViewById(R.id.button_etws_normal_type);
117 Button etwsCancelTypeButton = (Button) findViewById(R.id.button_etws_cancel_type);
131 Button etwsTestTypeButton = (Button) findViewById(R.id.button_etws_test_type);
145 Button cmasPresAlertButton = (Button) findViewById(R.id.button_cmas_pres_alert);
159 Button cmasExtremeAlertButton = (Button) findViewById(R.id.button_cmas_extreme_alert);
173 Button cmasSevereAlertButton = (Button) findViewById(R.id.button_cmas_severe_alert)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ViewFlipperTest.java 81 (ViewFlipper) mActivity.findViewById(R.id.viewflipper_test);
83 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
84 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
103 (ViewFlipper) mActivity.findViewById(R.id.viewflipper_test);
105 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
106 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
119 (ViewFlipper) mActivity.findViewById(R.id.viewflipper_test);
121 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
122 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewLayersActivity5.java 90 ((ClipFrameLayout) findViewById(R.id.container)).setClipEnabled(true);
94 ((ClipFrameLayout) findViewById(R.id.container)).setClipEnabled(false);
98 findViewById(R.id.container).setLayerType(View.LAYER_TYPE_HARDWARE, mPaint);
102 findViewById(R.id.container).setLayerType(View.LAYER_TYPE_NONE, null);
106 findViewById(R.id.container).getLayoutParams().height = ViewGroup.LayoutParams.MATCH_PARENT;
107 findViewById(R.id.container).requestLayout();
111 findViewById(R.id.container).getLayoutParams().height = 300;
112 findViewById(R.id.container).requestLayout();
116 final ListView list = (ListView) findViewById(listId);
  /packages/apps/LegacyCamera/src/com/android/camera/
RotateDialogController.java 61 mDialogRootLayout = v.findViewById(R.id.rotate_dialog_root_layout);
62 mRotateDialog = (RotateLayout) v.findViewById(R.id.rotate_dialog_layout);
63 mRotateDialogTitleLayout = v.findViewById(R.id.rotate_dialog_title_layout);
64 mRotateDialogButtonLayout = v.findViewById(R.id.rotate_dialog_button_layout);
65 mRotateDialogTitle = (TextView) v.findViewById(R.id.rotate_dialog_title);
66 mRotateDialogSpinner = (ProgressBar) v.findViewById(R.id.rotate_dialog_spinner);
67 mRotateDialogText = (TextView) v.findViewById(R.id.rotate_dialog_text);
68 mRotateDialogButton1 = (Button) v.findViewById(R.id.rotate_dialog_button1);
69 mRotateDialogButton2 = (Button) v.findViewById(R.id.rotate_dialog_button2);
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 70 mContentView.findViewById(R.id.btn_connect).setOnClickListener(new View.OnClickListener() {
95 mContentView.findViewById(R.id.btn_disconnect).setOnClickListener(
104 mContentView.findViewById(R.id.btn_start_client).setOnClickListener(
126 TextView statusText = (TextView) mContentView.findViewById(R.id.status_text);
147 TextView view = (TextView) mContentView.findViewById(R.id.group_owner);
153 view = (TextView) mContentView.findViewById(R.id.device_info);
160 new FileServerAsyncTask(getActivity(), mContentView.findViewById(R.id.status_text))
165 mContentView.findViewById(R.id.btn_start_client).setVisibility(View.VISIBLE);
166 ((TextView) mContentView.findViewById(R.id.status_text)).setText(getResources()
171 mContentView.findViewById(R.id.btn_connect).setVisibility(View.GONE)
    [all...]
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MainActivity.java 60 mPlayButton = (Button) findViewById(R.id.playbutton);
61 mPauseButton = (Button) findViewById(R.id.pausebutton);
62 mSkipButton = (Button) findViewById(R.id.skipbutton);
63 mRewindButton = (Button) findViewById(R.id.rewindbutton);
64 mStopButton = (Button) findViewById(R.id.stopbutton);
65 mEjectButton = (Button) findViewById(R.id.ejectbutton);
  /development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java 49 mCheckBox = (CheckBox) findViewById(R.id.checkbox);
50 final Button alphaButton = (Button) findViewById(R.id.alphaButton);
51 final Button translateButton = (Button) findViewById(R.id.translateButton);
52 final Button rotateButton = (Button) findViewById(R.id.rotateButton);
53 final Button scaleButton = (Button) findViewById(R.id.scaleButton);
54 final Button setButton = (Button) findViewById(R.id.setButton);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusAfterRemovalTest.java 50 mLeftLayout = (LinearLayout) a.findViewById(R.id.leftLayout);
51 mTopLeftButton = (Button) a.findViewById(R.id.topLeftButton);
52 mBottomLeftButton = (Button) a.findViewById(R.id.bottomLeftButton);
53 mTopRightButton = (Button) a.findViewById(R.id.topRightButton);
54 mBottomRightButton = (Button) a.findViewById(R.id.bottomRightButton);
94 getActivity().findViewById(R.id.leftLayout).getVisibility());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineButtonsTest.java 45 mCurrentTime = activity.findViewById(R.id.currenttime);
46 mTotalTime = activity.findViewById(R.id.totaltime);
47 mPrev = (ImageButton) activity.findViewById(R.id.prev);
48 mNext = (ImageButton) activity.findViewById(R.id.next);
49 mPause = (ImageButton) activity.findViewById(R.id.pause);
50 mLayout = activity.findViewById(R.id.layout);
  /frameworks/ex/framesequence/samples/RastermillSamples/src/com/android/rastermill/samples/
AnimatedGifTest.java 63 findViewById(R.id.start).setOnClickListener(new View.OnClickListener() {
69 findViewById(R.id.stop).setOnClickListener(new View.OnClickListener() {
75 findViewById(R.id.vis).setOnClickListener(new View.OnClickListener() {
81 findViewById(R.id.invis).setOnClickListener(new View.OnClickListener() {
93 ImageView imageView = (ImageView) findViewById(R.id.imageview);
111 ImageView imageView = (ImageView) findViewById(R.id.imageview);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java 57 LinearLayout container = (LinearLayout) findViewById(R.id.container);
60 startText = (TextView) findViewById(R.id.startText);
62 repeatText = (TextView) findViewById(R.id.repeatText);
64 cancelText = (TextView) findViewById(R.id.cancelText);
66 endText = (TextView) findViewById(R.id.endText);
68 startTextAnimator = (TextView) findViewById(R.id.startTextAnimator);
70 repeatTextAnimator = (TextView) findViewById(R.id.repeatTextAnimator);
72 cancelTextAnimator = (TextView) findViewById(R.id.cancelTextAnimator);
74 endTextAnimator = (TextView) findViewById(R.id.endTextAnimator);
76 final CheckBox endCB = (CheckBox) findViewById(R.id.endCB)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 53 button = (Button) findViewById(R.id.happy);
61 button = (Button) findViewById(R.id.neutral);
69 button = (Button) findViewById(R.id.sad);
76 button = (Button) findViewById(R.id.happyMarquee);
84 button = (Button) findViewById(R.id.neutralMarquee);
91 button = (Button) findViewById(R.id.sadMarquee);
98 button = (Button) findViewById(R.id.happyViews);
105 button = (Button) findViewById(R.id.neutralViews);
112 button = (Button) findViewById(R.id.sadViews);
119 button = (Button) findViewById(R.id.defaultSound)
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/graphics/
PaletteActivity.java 190 ImageView imageView = (ImageView) view.findViewById(R.id.image);
193 view.findViewById(R.id.text_vibrant).setBackgroundDrawable(null);
194 view.findViewById(R.id.text_muted).setBackgroundDrawable(null);
195 view.findViewById(R.id.text_light_vibrant).setBackgroundDrawable(null);
196 view.findViewById(R.id.text_light_muted).setBackgroundDrawable(null);
197 view.findViewById(R.id.text_dark_vibrant).setBackgroundDrawable(null);
198 view.findViewById(R.id.text_dark_muted).setBackgroundDrawable(null);
211 view.findViewById(R.id.text_vibrant),
214 view.findViewById(R.id.text_muted),
217 view.findViewById(R.id.text_light_vibrant)
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationActivity.java 34 mButton = (Button) findViewById(R.id.button1);
40 LinearLayout layout = (LinearLayout) findViewById(R.id.container);
  /cts/tests/tests/media/src/android/media/cts/
MediaStubActivity.java 36 SurfaceView surfaceV = (SurfaceView)findViewById(R.id.surface);
39 SurfaceView surfaceV2 = (SurfaceView)findViewById(R.id.surface2);
  /developers/build/prebuilts/gradle/ElevationBasic/Application/tests/src/com/example/android/elevationbasic/tests/
SampleTests.java 51 mShape1 = mTestActivity.findViewById(R.id.floating_shape);
52 mShape2 = mTestActivity.findViewById(R.id.floating_shape_2);
  /developers/samples/android/ui/views/Elevation/ElevationBasic/Application/tests/src/com/example/android/elevationbasic/tests/
SampleTests.java 51 mShape1 = mTestActivity.findViewById(R.id.floating_shape);
52 mShape2 = mTestActivity.findViewById(R.id.floating_shape_2);

Completed in 4138 milliseconds

1 2 34 5 6 7 8 91011>>