Searched refs:findViewById (Results 1 - 25 of 165) sorted by relevance

1234567

/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/
H A DMainActivity.java30 findViewById(id.basicFeatures).setOnClickListener(this);
31 findViewById(id.imageDisplay).setOnClickListener(this);
32 findViewById(id.eventHandling).setOnClickListener(this);
33 findViewById(id.advancedEventHandling).setOnClickListener(this);
34 findViewById(id.viewPagerGalleries).setOnClickListener(this);
35 findViewById(id.animation).setOnClickListener(this);
36 findViewById(id.extension).setOnClickListener(this);
37 findViewById(id.configuration).setOnClickListener(this);
38 findViewById(id.github).setOnClickListener(this);
H A DAbstractPagesActivity.java38 findViewById(R.id.next).setOnClickListener(new View.OnClickListener() {
41 findViewById(R.id.previous).setOnClickListener(new View.OnClickListener() {
85 ((TextView)findViewById(R.id.note)).setText(notes.get(page).getText());
86 findViewById(R.id.next).setVisibility(page >= notes.size() - 1 ? View.INVISIBLE : View.VISIBLE);
87 findViewById(R.id.previous).setVisibility(page <= 0 ? View.INVISIBLE : View.VISIBLE);
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DMainActivity.java34 Button startSimplePieExButton = (Button) findViewById(R.id.startSimplePieExButton);
42 Button startDynamicXYExButton = (Button)findViewById(R.id.startDynamicXYExButton);
50 Button startSimpleXYExButton = (Button) findViewById(R.id.startSimpleXYExButton);
58 Button startBarPlotExButton = (Button) findViewById(R.id.startBarPlotExButton);
66 Button startOrSensorExButton = (Button) findViewById(R.id.startOrSensorExButton);
74 Button startTimeSeriesExButon = (Button)findViewById(R.id.startTimeSeriesExButton);
82 Button startStepChartExButton = (Button)findViewById(R.id.startStepChartExButton);
90 Button startScrollZoomExButton = (Button)findViewById(R.id.startScrollZoomButton);
98 Button startXyRegionExampleButton = (Button)findViewById(R.id.startXyRegionExampleButton);
107 Button listViewExButton = (Button)findViewById(
[all...]
H A DSimplePieChartActivity.java53 pie = (PieChart) findViewById(R.id.mySimplePieChart);
56 donutSizeSeekBar = (SeekBar) findViewById(R.id.donutSizeSeekBar);
74 donutSizeTextView = (TextView) findViewById(R.id.donutSizeTextView);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
H A DViewLoaderTest.java70 TextView textView = (TextView) view.findViewById(android.R.id.text1);
78 TextView textView = (TextView) view.findViewById(android.R.id.text1);
86 TextView textView = (TextView) view.findViewById(android.R.id.text1);
94 TextView textView = (TextView) view.findViewById(android.R.id.text1);
102 TextView textView = (TextView) view.findViewById(android.R.id.text1);
111 TextView textView = (TextView) view.findViewById(android.R.id.text1);
120 TextView textView = (TextView) view.findViewById(android.R.id.text1);
127 WebView webView = (WebView) view.findViewById(R.id.web_view);
145 TestUtil.assertInstanceOf(TextView.class, mediaView.findViewById(R.id.title));
148 assertInstanceOf(View.class, mainView.findViewById(
[all...]
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/viewpager/
H A DViewPagerActivity.java37 ViewPager horizontalPager = findViewById(R.id.horizontal_pager);
39 ViewPager verticalPager = findViewById(R.id.vertical_pager);
45 ViewPager viewPager = findViewById(getPage() == 0 ? R.id.horizontal_pager : R.id.vertical_pager);
56 findViewById(R.id.horizontal_pager).setVisibility(View.VISIBLE);
57 findViewById(R.id.vertical_pager).setVisibility(View.GONE);
59 findViewById(R.id.horizontal_pager).setVisibility(View.GONE);
60 findViewById(R.id.vertical_pager).setVisibility(View.VISIBLE);
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
H A DFrontPageFragment.java45 final ImageView midiImage = (ImageView) view.findViewById(R.id.midi_image);
46 final TextView midiText = (TextView) view.findViewById(R.id.midi_text);
H A DCrashLogActivity.java38 txtCrashLog = (TextView) findViewById(R.id.txt_crash_log);
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DCustomizeWindow.java35 //((TextView) activity.findViewById(R.id.left_text)).setText(title);
36 //((TextView) activity.findViewById(R.id.right_text)).setText("SL4A r"
41 ((ProgressBar) activity.findViewById(R.id.progress_bar)).setVisibility(on ? View.VISIBLE
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/imagedisplay/
H A DImageDisplayRotateFragment.java20 final SubsamplingScaleImageView imageView = rootView.findViewById(id.imageView);
25 rootView.findViewById(id.previous).setOnClickListener(new View.OnClickListener() {
28 rootView.findViewById(id.next).setOnClickListener(new View.OnClickListener() {
32 rootView.findViewById(id.rotate).setOnClickListener(new View.OnClickListener() {
H A DImageDisplayLargeFragment.java22 rootView.findViewById(id.next).setOnClickListener(new View.OnClickListener() {
26 SubsamplingScaleImageView imageView = rootView.findViewById(id.imageView);
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/extension/
H A DExtensionCircleFragment.java22 rootView.findViewById(id.next).setOnClickListener(new View.OnClickListener() {
25 rootView.findViewById(id.previous).setOnClickListener(new View.OnClickListener() {
29 SubsamplingScaleImageView imageView = rootView.findViewById(id.imageView);
H A DExtensionFreehandFragment.java22 rootView.findViewById(id.previous).setOnClickListener(new View.OnClickListener() {
26 final FreehandView imageView = rootView.findViewById(id.imageView);
28 rootView.findViewById(id.reset).setOnClickListener(new View.OnClickListener() {
H A DExtensionPinFragment.java23 rootView.findViewById(id.next).setOnClickListener(new View.OnClickListener() {
27 PinView imageView = rootView.findViewById(id.imageView);
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DSettingsActivity.java72 mTextSettingsInfo = (TextView) findViewById(R.id.textSettingsInfo);
75 mSpinnerMicSource = (Spinner) findViewById(R.id.spinnerMicSource);
87 mSpinnerPerformanceMode = (Spinner) findViewById(R.id.spinnerPerformanceMode);
100 mSpinnerSamplingRate = (Spinner) findViewById(R.id.spinnerSamplingRate);
115 mSpinnerAudioThreadType = (Spinner) findViewById(R.id.spinnerAudioThreadType);
128 mSpinnerChannelIndex = (Spinner) findViewById(R.id.spinnerChannelIndex);
138 mBufferTestDurationUI = (SettingsPicker) findViewById(R.id.bufferTestDurationSetting);
153 mWavePlotDurationUI = (SettingsPicker) findViewById(R.id.wavePlotDurationSetting);
170 mPlayerBufferUI = (SettingsPicker) findViewById(R.id.playerBufferSetting);
192 mRecorderBufferUI = (SettingsPicker) findViewById(
[all...]
H A DPlayerBufferPeriodActivity.java38 HistogramView histogramView = (HistogramView) findViewById(R.id.viewWriteHistogram);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowLayoutInflaterTest.java66 TextView textView = view.findViewById(android.R.id.text1);
74 TextView textView = view.findViewById(android.R.id.text1);
82 TextView textView = view.findViewById(android.R.id.text1);
89 WebView webView = view.findViewById(R.id.web_view);
107 assertThat(mediaView.<TextView>findViewById(R.id.title))
111 assertThat(mainView.<View>findViewById(R.id.title))
118 assertThat(view.<ImageView>findViewById(R.id.icon))
122 assertThat(view.<ImageView>findViewById(android.R.id.icon))
129 assertThat(mediaView.<TextView>findViewById(R.id.include_id))
136 assertThat(mediaView.findViewById(
[all...]
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DCallFragment.java58 (TextView) controlView.findViewById(R.id.contact_name_call);
60 (ImageButton) controlView.findViewById(R.id.button_call_disconnect);
62 (ImageButton) controlView.findViewById(R.id.button_call_switch_camera);
64 (ImageButton) controlView.findViewById(R.id.button_call_scaling_mode);
66 (TextView) controlView.findViewById(R.id.capture_format_text_call);
68 (SeekBar) controlView.findViewById(R.id.capture_format_slider_call);
/external/replicaisland/src/com/replica/replicaisland/
H A DDiaryActivity.java54 TextView text = (TextView)findViewById(R.id.diarytext);
56 ImageView image = (ImageView)findViewById(R.id.diarybackground);
65 ImageView okArrow = (ImageView)findViewById(R.id.ok);
H A DAnimationPlayerActivity.java81 ImageView canvasImage = (ImageView) findViewById(R.id.animation_canvas);
112 View background = findViewById(R.id.animation_background);
113 View foreground = findViewById(R.id.animation_foreground);
114 View gameOver = findViewById(R.id.game_over);
126 View background = findViewById(R.id.animation_background);
127 View sphere = findViewById(R.id.animation_sphere);
128 View cliffs = findViewById(R.id.animation_cliffs);
129 View rokudou = findViewById(R.id.animation_rokudou);
130 View gameOver = findViewById(R.id.game_over);
H A DKeyboardConfigDialogPreference.java101 mLeftText = (TextView)view.findViewById(R.id.key_left);
104 mRightText = (TextView)view.findViewById(R.id.key_right);
107 mJumpText = (TextView)view.findViewById(R.id.key_jump);
110 mAttackText = (TextView)view.findViewById(R.id.key_attack);
113 mLeftBorder = view.findViewById(R.id.left_border);
114 mRightBorder = view.findViewById(R.id.right_border);
115 mJumpBorder = view.findViewById(R.id.jump_border);
116 mAttackBorder = view.findViewById(R.id.attack_border);
H A DGameOverActivity.java135 mPearlView = (IncrementingTextView)findViewById(R.id.pearl_percent);
136 mEnemiesDestroyedView = (IncrementingTextView)findViewById(R.id.enemy_percent);
137 mPlayTimeView = (IncrementingTextView)findViewById(R.id.total_play_time);
138 mEndingView = (TextView)findViewById(R.id.ending);
167 Button okButton = (Button)findViewById(R.id.ok);
H A DDifficultyMenuActivity.java90 mBabyButton = findViewById(R.id.babyButton);
91 mKidsButton = findViewById(R.id.kidsButton);
92 mAdultsButton = findViewById(R.id.adultsButton);
93 mBabyText = findViewById(R.id.babyText);
94 mKidsText = findViewById(R.id.kidsText);
95 mAdultsText = findViewById(R.id.adultsText);
96 mBackground = findViewById(R.id.mainMenuBackground);
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
H A DHelpActivity.java54 TextView subtitle = (TextView) findViewById(R.id.version);
58 ((TextView) findViewById(R.id.help_acks_text)).setMovementMethod(LinkMovementMethod
62 LinearLayout content = (LinearLayout) findViewById(R.id.topics);
/external/tensorflow/tensorflow/contrib/lite/models/smartreply/demo/app/src/main/java/com/example/android/smartreply/
H A DMainActivity.java50 sendButton = (Button) findViewById(R.id.send_button);
56 messageTextView = (TextView) findViewById(R.id.message_text);
57 messageInput = (EditText) findViewById(R.id.message_input);

Completed in 483 milliseconds

1234567