HomeSort by relevance Sort by last modified time
    Searched refs:textView (Results 276 - 300 of 371) sorted by null

<<1112131415

  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ScrollingTabContainerView.java 47 import android.widget.TextView;
384 private TextView mTextView;
490 TextView textView = new AppCompatTextView(getContext(), null,
492 textView.setEllipsize(TruncateAt.END);
496 textView.setLayoutParams(lp);
497 addView(textView);
498 mTextView = textView;
AppCompatTextHelper.java 36 import android.widget.TextView;
41 static AppCompatTextHelper create(TextView textView) {
43 return new AppCompatTextHelperV17(textView);
45 return new AppCompatTextHelper(textView);
48 final TextView mView;
60 AppCompatTextHelper(TextView view) {
93 // in TextView's constructor, so we should only set a new transformation method
214 // Try with String. This is done by TextView JB+, but fails in ICS
225 // This breaks away slightly from the logic in TextView.setTextAppearance that serve
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 37 import android.widget.TextView;
482 final TextView textView = (TextView) mActionBarAdapter.getSelectionContainer()
485 textView.setVisibility(View.VISIBLE);
486 textView.setAllCaps(true);
487 textView.setOnClickListener(new OnClickListener() {
496 textView.setVisibility(View.GONE);
  /frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
NekoLand.java 44 import android.widget.TextView;
218 holder.textView.setText(mCats[position].getName());
318 private final TextView textView;
326 textView = (TextView) itemView.findViewById(android.R.id.title);
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 45 import android.widget.TextView;
312 TextView textView = (TextView) convertView;
313 textView.setText(item.label);
314 textView.setCompoundDrawablesWithIntrinsicBounds(item.icon, null, null, null);
ProxySelector.java 40 import android.widget.TextView;
274 TextView textView = (TextView) v;
275 Selection.selectAll((Spannable) textView.getText());
  /packages/services/Telephony/src/com/android/phone/
SimContacts.java 56 import android.widget.TextView;
348 TextView textView = (TextView) itemInfo.targetView.findViewById(android.R.id.text1);
349 if (textView != null) {
350 menu.setHeaderTitle(textView.getText());
  /frameworks/support/samples/SupportVectorDrawableDemos/src/com/example/android/support/vectordrawable/app/
AVDCListenerDemo.java 28 import android.widget.TextView;
44 final TextView textView1 = findViewById(R.id.textView);
46 final TextView textView2 = findViewById(R.id.textView2);
48 final TextView textView3 = findViewById(R.id.textView3);
50 final TextView textView4 = findViewById(R.id.textView4);
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
GridActivity.java 29 import android.widget.TextView;
391 TextView textView = new TextView(parent.getContext()) {
413 textView.setTextColor(Color.BLACK);
414 textView.setOnFocusChangeListener(mItemFocusChangeListener);
415 itemView = textView;
451 ((TextView) holder.itemView).setText("Item "+mItemLengths[position]
457 ((TextView) holder.itemView).setFocusable(focusable);
458 ((TextView) holder.itemView).setFocusableInTouchMode(focusable)
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/ui/
AddManualPrinterDialog.java 35 import android.widget.TextView;
48 TextView.OnEditorActionListener, View.OnKeyListener {
62 private TextView mHostnameView;
85 mHostnameView = (TextView) findViewById(R.id.hostname);
101 private void openKeyboard(TextView view) {
169 public boolean onEditorAction(TextView textView, int id, KeyEvent keyEvent) {
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
BluetoothChatFragment.java 42 import android.widget.TextView;
176 TextView textView = (TextView) view.findViewById(R.id.edit_text_out);
177 String message = textView.getText().toString();
229 private TextView.OnEditorActionListener mWriteListener
230 = new TextView.OnEditorActionListener() {
231 public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
BluetoothChatFragment.java 42 import android.widget.TextView;
176 TextView textView = (TextView) view.findViewById(R.id.edit_text_out);
177 String message = textView.getText().toString();
229 private TextView.OnEditorActionListener mWriteListener
230 = new TextView.OnEditorActionListener() {
231 public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
  /development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/
BluetoothChatFragment.java 42 import android.widget.TextView;
176 TextView textView = (TextView) view.findViewById(R.id.edit_text_out);
177 String message = textView.getText().toString();
229 private TextView.OnEditorActionListener mWriteListener
230 = new TextView.OnEditorActionListener() {
231 public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
  /frameworks/base/core/java/android/widget/
FastScroller.java 105 private final TextView mPrimaryText;
106 private final TextView mSecondaryText;
541 private TextView createPreviewTextView(Context context) {
544 final TextView textView = new TextView(context);
545 textView.setLayoutParams(params);
546 textView.setSingleLine(true);
547 textView.setEllipsize(TruncateAt.MIDDLE);
548 textView.setGravity(Gravity.CENTER)
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationInfoTest.java 58 import android.widget.TextView;
163 final TextView textView = (TextView) mNotificationInfo.findViewById(R.id.pkgname);
164 assertTrue(textView.getText().toString().contains("App Name"));
186 final TextView groupNameView = (TextView) mNotificationInfo.findViewById(R.id.group_name);
188 final TextView groupDividerView =
189 (TextView) mNotificationInfo.findViewById(R.id.pkg_group_divider);
205 final TextView groupNameView = (TextView) mNotificationInfo.findViewById(R.id.group_name)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncAdapter.java 36 import android.widget.TextView;
224 TextView textView = (TextView) view.findViewById(id);
225 textView.setText(text);
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
SideFragment.java 29 import android.widget.TextView;
101 TextView textView = (TextView) view.findViewById(R.id.side_panel_title);
102 textView.setText(getTitle());
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewFocusRecoveryTest.java 32 import android.widget.TextView;
479 assertThat("Either the ViewGroup or the TextView within the first child of RV"
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java 75 import android.widget.TextView;
645 public TextView label;
646 public TextView data;
647 public TextView footer;
680 views.label = (TextView) v.findViewById(android.R.id.text1);
681 views.data = (TextView) v.findViewById(android.R.id.text2);
682 views.footer = (TextView) v.findViewById(R.id.footer);
713 TextView label = views.label;
718 TextView data = views.data;
786 private void setMaxLines(TextView textView, int maxLines)
    [all...]
  /frameworks/support/design/src/android/support/design/widget/
TabLayout.java 70 import android.widget.TextView;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoFragment.java 93 import android.widget.TextView;
351 private TextView mTitle;
352 private TextView mWhenDateTime;
353 private TextView mWhere;
    [all...]
  /prebuilts/sdk/current/support/compat/libs/
android-support-compat.jar 
  /cts/tests/tests/assist/src/android/assist/cts/
AssistTestBase.java 41 import android.widget.TextView;
439 if (parentView instanceof TextView) {
440 Log.i(TAG, "view text: " + ((TextView) parentView).getText());
449 if (parentView instanceof TextView) {
458 TextView textView = (TextView) parentView;
459 assertEquals(textView.getTextSize(), parentNode.getTextSize());
460 String viewString = textView.getText().toString();
464 Log.i(TAG, "Verifying text within TextView at the beginning")
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AbsListView_ScrollTest.java 41 import android.widget.TextView;
629 final TextView textView = (convertView != null) ? (TextView) convertView
630 : (TextView) mLayoutInflater.inflate(R.layout.listitemfixed_layout,
632 textView.setText("Item " + position);
633 return textView;
  /development/samples/Home/src/com/example/android/home/
Home.java 57 import android.widget.TextView;
668 final TextView textView = (TextView) convertView.findViewById(R.id.label);
669 textView.setCompoundDrawablesWithIntrinsicBounds(null, icon, null, null);
670 textView.setText(info.title);

Completed in 1754 milliseconds

<<1112131415