HomeSort by relevance Sort by last modified time
    Searched refs:findViewById (Results 1 - 25 of 3724) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
SecureViewOverlay.java 53 spoofLayout(findViewById(R.id.secure_view_overlay_description),
54 mActivity.findViewById(R.id.secure_view_description));
55 spoofLayout(findViewById(R.id.secure_view_overlay_button1),
56 mActivity.findViewById(R.id.secure_view_unsecure_button));
57 spoofLayout(findViewById(R.id.secure_view_overlay_button2),
58 mActivity.findViewById(R.id.secure_view_builtin_secure_button));
59 spoofLayout(findViewById(R.id.secure_view_overlay_button3),
60 mActivity.findViewById(R.id.secure_view_custom_secure_button));
DragAndDropDemo.java 36 TextView text = (TextView) findViewById(R.id.drag_text);
37 DraggableDot dot = (DraggableDot) findViewById(R.id.drag_dot_1);
39 dot = (DraggableDot) findViewById(R.id.drag_dot_2);
41 dot = (DraggableDot) findViewById(R.id.drag_dot_3);
44 mHiddenDot = (DraggableDot) findViewById(R.id.drag_dot_hidden);
47 mResultText = (TextView) findViewById(R.id.drag_result_text);
RatingBar1.java 40 mRatingText = (TextView) findViewById(R.id.rating);
44 mIndicatorRatingBar = (RatingBar) findViewById(R.id.indicator_ratingbar);
45 mSmallRatingBar = (RatingBar) findViewById(R.id.small_ratingbar);
48 ((RatingBar)findViewById(R.id.ratingbar1)).setOnRatingBarChangeListener(this);
49 ((RatingBar)findViewById(R.id.ratingbar2)).setOnRatingBarChangeListener(this);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
AccessoryController.java 14 protected View findViewById(int id) {
15 return mHostActivity.findViewById(id);
  /cts/tests/tests/view/src/android/view/cts/
FocusFinderCtsActivity.java 40 layout = (ViewGroup) findViewById(R.id.layout);
41 topLeftButton = (Button) findViewById(R.id.top_left_button);
42 topRightButton = (Button) findViewById(R.id.top_right_button);
43 bottomLeftButton = (Button) findViewById(R.id.bottom_left_button);
44 bottomRightButton = (Button) findViewById(R.id.bottom_right_button);
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
CallLogViewHolder.java 34 card = v.findViewById(R.id.call_log_card);
35 callType = (LinearLayout) v.findViewById(R.id.call_type);
36 callTypeIconsView = (CallTypeIconsView) v.findViewById(R.id.call_type_icons);
37 smallIcon = (ImageView) v.findViewById(R.id.small_icon);
38 container = (ViewGroup) v.findViewById(R.id.container);
  /sdk/testapps/javaProjectTest/app/src/com/android/tests/javaprojecttest/app/
Main.java 23 TextView tv = (TextView) findViewById(R.id.app);
26 tv = (TextView) findViewById(R.id.lib1);
29 tv = (TextView) findViewById(R.id.lib2);
32 tv = (TextView) findViewById(R.id.javaProject1);
35 tv = (TextView) findViewById(R.id.javaProject2);
38 tv = (TextView) findViewById(R.id.javaProject3);
41 tv = (TextView) findViewById(R.id.basicJar);
44 tv = (TextView) findViewById(R.id.basicJar2);
47 tv = (TextView) findViewById(R.id.basicJar3);
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardPINView.java 82 mContainer = findViewById(R.id.container);
83 mRow0 = findViewById(R.id.row0);
84 mRow1 = findViewById(R.id.row1);
85 mRow2 = findViewById(R.id.row2);
86 mRow3 = findViewById(R.id.row3);
87 mDivider = findViewById(R.id.divider);
93 findViewById(R.id.key1), findViewById(R.id.key2),
94 findViewById(R.id.key3)
97 findViewById(R.id.key4), findViewById(R.id.key5)
    [all...]
  /cts/tests/acceleration/src/android/acceleration/
BaseAcceleratedActivity.java 38 mHardwareAcceleratedView = (AcceleratedView) findViewById(R.id.hardware_accelerated_view);
39 mSoftwareAcceleratedView = (AcceleratedView) findViewById(R.id.software_accelerated_view);
42 (AcceleratedView) findViewById(R.id.manual_hardware_accelerated_view);
44 (AcceleratedView) findViewById(R.id.manual_software_accelerated_view);
  /developers/build/prebuilts/gradle/ClippingBasic/Application/tests/src/com/example/android/clippingbasic/tests/
SampleTests.java 55 assertNotNull("Clipped frame is null", mTestActivity.findViewById(R.id.frame));
56 assertNotNull("Text view is null", mTestActivity.findViewById(R.id.text_view));
63 View clippedView = mTestActivity.findViewById(R.id.frame);
69 TouchUtils.clickView(this, mTestActivity.findViewById(R.id.button));
  /developers/samples/android/ui/views/Clipping/ClippingBasic/Application/tests/src/com/example/android/clippingbasic/tests/
SampleTests.java 55 assertNotNull("Clipped frame is null", mTestActivity.findViewById(R.id.frame));
56 assertNotNull("Text view is null", mTestActivity.findViewById(R.id.text_view));
63 View clippedView = mTestActivity.findViewById(R.id.frame);
69 TouchUtils.clickView(this, mTestActivity.findViewById(R.id.button));
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGrid.java 36 return findViewById(R.id.layout);
54 return findViewById(R.id.column1);
56 return findViewById(R.id.column2);
58 return findViewById(R.id.column3);
  /developers/build/prebuilts/gradle/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageViewHolder.java 35 mImageView = itemView.findViewById(R.id.imageview);
36 mTextView = itemView.findViewById(R.id.textview_image_label);
  /developers/samples/android/content/documentsUi/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageViewHolder.java 35 mImageView = itemView.findViewById(R.id.imageview);
36 mTextView = itemView.findViewById(R.id.textview_image_label);
  /frameworks/support/design/tests/src/android/support/design/widget/
CoordinatorLayoutActivity.java 34 mContainer = findViewById(R.id.container);
35 mCoordinatorLayout = findViewById(R.id.coordinator);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
CustomTitle.java 67 final TextView leftText = (TextView) findViewById(R.id.left_text);
68 final TextView rightText = (TextView) findViewById(R.id.right_text);
69 final EditText leftTextEdit = (EditText) findViewById(R.id.left_text_edit);
70 final EditText rightTextEdit = (EditText) findViewById(R.id.right_text_edit);
71 Button leftButton = (Button) findViewById(R.id.left_text_button);
72 Button rightButton = (Button) findViewById(R.id.right_text_button);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
PhoneCallDetailsViews.java 59 (TextView) view.findViewById(R.id.name),
60 view.findViewById(R.id.call_type),
61 (CallTypeIconsView) view.findViewById(R.id.call_type_icons),
62 (TextView) view.findViewById(R.id.call_location_and_date),
63 (TextView) view.findViewById(R.id.voicemail_transcription),
64 (TextView) view.findViewById(R.id.call_account_label));
  /sdk/testapps/libsTest/appTest/src/com/android/tests/libstest/app/
MainActivityTest.java 63 mAppTextView1 = (TextView) a.findViewById(R.id.app_text1);
64 mAppTextView2 = (TextView) a.findViewById(R.id.app_text1);
65 mLib1TextView1 = (TextView) a.findViewById(R.id.lib1_text1);
66 mLib1TextView2 = (TextView) a.findViewById(R.id.lib1_text2);
67 mLib2TextView1 = (TextView) a.findViewById(R.id.lib2_text1);
68 mLib2TextView2 = (TextView) a.findViewById(R.id.lib2_text2);
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisible.java 44 final View childToMakeVisible = findViewById(R.id.childToMakeVisible);
46 final TextView topBlob = findViewById(R.id.topBlob);
47 final TextView bottomBlob = findViewById(R.id.bottomBlob);
58 findViewById(R.id.scrollToRectFromTop).setOnClickListener(new View.OnClickListener() {
66 findViewById(R.id.scrollToRectFromTop2).setOnClickListener(new View.OnClickListener() {
74 findViewById(R.id.scrollToRectFromBottom).setOnClickListener(new View.OnClickListener() {
82 findViewById(R.id.scrollToRectFromBottom2).setOnClickListener(new View.OnClickListener() {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
MLandActivity.java 33 mLand = findViewById(R.id.world);
34 mLand.setScoreFieldHolder(findViewById(R.id.scores));
35 final View welcome = findViewById(R.id.welcome);
45 final View minus = findViewById(R.id.player_minus_button);
46 final View plus = findViewById(R.id.player_plus_button);
87 findViewById(R.id.player_minus_button).setVisibility(View.INVISIBLE);
88 findViewById(R.id.player_plus_button).setVisibility(View.INVISIBLE);
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceViewHolder.java 28 * {@link #findViewById(int)}.
39 mCachedViews.put(android.R.id.title, itemView.findViewById(android.R.id.title));
40 mCachedViews.put(android.R.id.summary, itemView.findViewById(android.R.id.summary));
41 mCachedViews.put(android.R.id.icon, itemView.findViewById(android.R.id.icon));
42 mCachedViews.put(R.id.icon_frame, itemView.findViewById(R.id.icon_frame));
44 itemView.findViewById(AndroidResources.ANDROID_R_ICON_FRAME));
55 * yet cached, it falls back to calling {@link View#findViewById(int)} and caches the result.
60 public View findViewById(@IdRes int id) {
65 final View v = itemView.findViewById(id);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
FatActivity.java 88 mCaptcha = findViewById(R.id.captcha);
89 mInput = findViewById(R.id.input);
90 mImage = findViewById(R.id.image);
91 mImportantImage = findViewById(R.id.important_image);
93 mNotImportantContainerExcludingDescendants = findViewById(
95 mNotImportantContainerExcludingDescendantsChild = findViewById(
97 mNotImportantContainerExcludingDescendantsGrandChild = findViewById(
100 mImportantContainerExcludingDescendants = findViewById(
102 mImportantContainerExcludingDescendantsChild = findViewById(
104 mImportantContainerExcludingDescendantsGrandChild = findViewById(
    [all...]
  /developers/build/prebuilts/gradle/EmojiCompat/app/src/main/java/com/example/android/emojicompat/
MainActivity.java 41 final TextView emojiTextView = findViewById(R.id.emoji_text_view);
45 final TextView emojiEditText = findViewById(R.id.emoji_edit_text);
49 final TextView emojiButton = findViewById(R.id.emoji_button);
53 final TextView regularTextView = findViewById(R.id.regular_text_view);
64 final TextView customTextView = findViewById(R.id.emoji_custom_text_view);
  /developers/samples/android/views/EmojiCompat/app/src/main/java/com/example/android/emojicompat/
MainActivity.java 41 final TextView emojiTextView = findViewById(R.id.emoji_text_view);
45 final TextView emojiEditText = findViewById(R.id.emoji_edit_text);
49 final TextView emojiButton = findViewById(R.id.emoji_button);
53 final TextView regularTextView = findViewById(R.id.regular_text_view);
64 final TextView customTextView = findViewById(R.id.emoji_custom_text_view);
  /frameworks/base/core/tests/coretests/src/android/widget/
RadioGroupPreCheckedTest.java 38 RadioButton radio = (RadioButton) activity.findViewById(R.id.value_one);
41 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group);
50 RadioButton radio = (RadioButton) activity.findViewById(R.id.value_two);
53 RadioButton old = (RadioButton) activity.findViewById(R.id.value_one);
58 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group);

Completed in 1703 milliseconds

1 2 3 4 5 6 7 8 91011>>