HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 151 - 175 of 1769) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextFadeActivity.java 26 import android.widget.TextView;
37 ((TextView) findViewById(R.id.contact_tile_name)).setEllipsize(TextUtils.TruncateAt.MARQUEE);
ViewLayerInvalidationActivity.java 25 import android.widget.TextView;
35 ArrayList<TextView> textViews = new ArrayList<TextView>();
38 TextView nestedStatusTV, invalidateStatusTV;
56 nestedStatusTV = (TextView) findViewById(R.id.nestedStatus);
57 invalidateStatusTV = (TextView) findViewById(R.id.invalidateStatus);
58 final TextView tva = (TextView) findViewById(R.id.textviewa);
84 for (TextView tv : textViews) {
150 if (view instanceof TextView) {
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
AccessibleTextView.java 24 import android.widget.TextView;
29 public class AccessibleTextView extends TextView {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
RowHeaderView.java 19 import android.widget.TextView;
24 public final class RowHeaderView extends TextView {
  /packages/apps/Email/src/com/android/email/activity/setup/
PolicyListPreference.java 23 import android.widget.TextView;
43 ((TextView)view.findViewById(android.R.id.summary)).setMaxLines(MAX_POLICIES);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingRestore.java 24 import android.widget.TextView;
35 ((TextView) findViewById(R.id.title)).setText(
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
FromAddressSpinnerAdapter.java 25 import android.widget.TextView;
61 final TextView nameView = (TextView) fromEntry.findViewById(R.id.spinner_account_name);
66 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
70 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
83 ((TextView) fromEntry.findViewById(R.id.spinner_account_name)).setText(fromItem.name);
84 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
87 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiStatusTest.java 47 import android.widget.TextView;
61 private TextView mWifiState;
62 private TextView mNetworkState;
63 private TextView mSupplicantState;
64 private TextView mRSSI;
65 private TextView mBSSID;
66 private TextView mSSID;
67 private TextView mHiddenSSID;
68 private TextView mIPAddr;
69 private TextView mMACAddr
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleExpandableListAdapterTest.java 29 import android.widget.TextView;
169 assertTrue(result instanceof TextView);
170 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
173 assertTrue(result instanceof TextView);
174 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
184 assertTrue(result instanceof TextView);
185 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
189 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
192 View convertView = new TextView(mContext);
196 assertEquals("child20", ((TextView) result).getText().toString())
    [all...]
  /developers/build/prebuilts/gradle/BasicNetworking/Application/src/main/java/com/example/android/basicnetworking/
SimpleTextFragment.java 27 import android.widget.TextView;
30 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create
45 // For situations where the app wants to modify text at Runtime, exposing the TextView.
46 private TextView mTextView;
54 // Before initializing the textView, check if any arguments were provided via setArguments.
57 // Create a new TextView and set its text to whatever was provided.
58 mTextView = new TextView(getActivity());
68 public TextView getTextView() {
73 * Changes the text for this TextView, according to the resource ID provided.
74 * @param stringId A resource ID representing the text content for this Fragment's TextView
    [all...]
  /developers/build/prebuilts/gradle/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
SimpleTextFragment.java 26 import android.widget.TextView;
29 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create
44 // For situations where the app wants to modify text at Runtime, exposing the TextView.
45 private TextView mTextView;
53 // Before initializing the textView, check if any arguments were provided via setArguments.
56 // Create a new TextView and set its text to whatever was provided.
57 mTextView = new TextView(getActivity());
67 public TextView getTextView() {
72 * Changes the text for this TextView, according to the resource ID provided.
73 * @param stringId A resource ID representing the text content for this Fragment's TextView
    [all...]
  /developers/build/prebuilts/gradle/RecyclerView/Application/src/main/java/com/example/android/recyclerview/
CustomAdapter.java 25 import android.widget.TextView;
40 private final TextView textView;
51 textView = (TextView) v.findViewById(R.id.textView);
54 public TextView getTextView() {
55 return textView;
  /developers/build/prebuilts/gradle/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerListAdapter.java 24 import android.widget.TextView;
46 private TextView mTextView;
51 mTextView = (TextView) itemView.findViewById(R.id.name);
74 TextView view = itemHolder.mTextView;
  /developers/samples/android/connectivity/network/BasicNetworking/Application/src/main/java/com/example/android/basicnetworking/
SimpleTextFragment.java 27 import android.widget.TextView;
30 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create
45 // For situations where the app wants to modify text at Runtime, exposing the TextView.
46 private TextView mTextView;
54 // Before initializing the textView, check if any arguments were provided via setArguments.
57 // Create a new TextView and set its text to whatever was provided.
58 mTextView = new TextView(getActivity());
68 public TextView getTextView() {
73 * Changes the text for this TextView, according to the resource ID provided.
74 * @param stringId A resource ID representing the text content for this Fragment's TextView
    [all...]
  /developers/samples/android/connectivity/network/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
SimpleTextFragment.java 26 import android.widget.TextView;
29 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create
44 // For situations where the app wants to modify text at Runtime, exposing the TextView.
45 private TextView mTextView;
53 // Before initializing the textView, check if any arguments were provided via setArguments.
56 // Create a new TextView and set its text to whatever was provided.
57 mTextView = new TextView(getActivity());
67 public TextView getTextView() {
72 * Changes the text for this TextView, according to the resource ID provided.
73 * @param stringId A resource ID representing the text content for this Fragment's TextView
    [all...]
  /developers/samples/android/ui/views/RecyclerView/Application/src/main/java/com/example/android/recyclerview/
CustomAdapter.java 25 import android.widget.TextView;
40 private final TextView textView;
51 textView = (TextView) v.findViewById(R.id.textView);
54 public TextView getTextView() {
55 return textView;
  /developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerListAdapter.java 24 import android.widget.TextView;
46 private TextView mTextView;
51 mTextView = (TextView) itemView.findViewById(R.id.name);
74 TextView view = itemHolder.mTextView;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ReceiveResult.java 30 import android.widget.TextView;
87 // Retrieve the TextView widget that will display results.
88 mResults = (TextView)findViewById(R.id.results);
91 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
151 private TextView mResults;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List5.java 28 import android.widget.TextView;
71 TextView tv;
73 tv = (TextView) LayoutInflater.from(mContext).inflate(
76 tv = (TextView) convertView;
  /development/samples/browseable/BasicNetworking/src/com.example.android.basicnetworking/
SimpleTextFragment.java 27 import android.widget.TextView;
30 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create
45 // For situations where the app wants to modify text at Runtime, exposing the TextView.
46 private TextView mTextView;
54 // Before initializing the textView, check if any arguments were provided via setArguments.
57 // Create a new TextView and set its text to whatever was provided.
58 mTextView = new TextView(getActivity());
68 public TextView getTextView() {
73 * Changes the text for this TextView, according to the resource ID provided.
74 * @param stringId A resource ID representing the text content for this Fragment's TextView
    [all...]
  /development/samples/browseable/NetworkConnect/src/com.example.android.networkconnect/
SimpleTextFragment.java 26 import android.widget.TextView;
29 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create
44 // For situations where the app wants to modify text at Runtime, exposing the TextView.
45 private TextView mTextView;
53 // Before initializing the textView, check if any arguments were provided via setArguments.
56 // Create a new TextView and set its text to whatever was provided.
57 mTextView = new TextView(getActivity());
67 public TextView getTextView() {
72 * Changes the text for this TextView, according to the resource ID provided.
73 * @param stringId A resource ID representing the text content for this Fragment's TextView
    [all...]
  /development/samples/browseable/RecyclerView/src/com.example.android.recyclerview/
CustomAdapter.java 25 import android.widget.TextView;
40 private final TextView textView;
51 textView = (TextView) v.findViewById(R.id.textView);
54 public TextView getTextView() {
55 return textView;
  /development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
SpeedPickerListAdapter.java 24 import android.widget.TextView;
46 private TextView mTextView;
51 mTextView = (TextView) itemView.findViewById(R.id.name);
74 TextView view = itemHolder.mTextView;
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
AddressWidgetUiComponentProvider.java 25 import android.widget.TextView;
53 * @return a custom {@link TextView} created for the field
55 protected TextView createUiLabel(CharSequence label, WidthType widthType) {
56 TextView textView = (TextView) mInflater.inflate(R.layout.address_textview, null, false);
57 textView.setText(label);
58 return textView;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
HasCompoundDrawablesMatcher.java 3 import android.widget.TextView;
12 public class HasCompoundDrawablesMatcher extends TypeSafeMatcher<TextView> {
21 public boolean matchesSafely(TextView actual) {
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) {

Completed in 687 milliseconds

1 2 3 4 5 67 8 91011>>