HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 201 - 225 of 2223) sorted by null

1 2 3 4 5 6 7 891011>>

  /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))
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
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...]
  /packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
DemoInstrumentClusterView.java 26 import android.widget.TextView;
35 private TextView mSpeedView;
36 private TextView mEventTitleView;
37 private TextView mDistanceView;
39 private TextView mMediaArtistView;
40 private TextView mMediaAlbumView;
41 private TextView mMediaTrackView;
46 private TextView mPhoneTitle;
47 private TextView mPhoneSubtitle;
164 mSpeedView = (TextView) rootView.findViewById(R.id.speed)
    [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...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiStatusTest.java 37 import android.widget.TextView;
57 private TextView mWifiState;
58 private TextView mNetworkState;
59 private TextView mSupplicantState;
60 private TextView mRSSI;
61 private TextView mBSSID;
62 private TextView mSSID;
63 private TextView mHiddenSSID;
64 private TextView mIPAddr;
65 private TextView mMACAddr
    [all...]
  /cts/tests/leanbackjank/app/src/android/leanbackjank/app/presenter/
GridItemPresenter.java 23 import android.widget.TextView;
40 TextView view = new TextView(parent.getContext());
53 ((TextView) viewHolder.view).setText((String) item);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/presenter/
GridItemPresenter.java 23 import android.widget.TextView;
40 TextView view = new TextView(parent.getContext());
52 ((TextView) viewHolder.view).setText((String) item);
  /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;
49 private TextView mTextView;
54 mTextView = (TextView) itemView.findViewById(R.id.name);
77 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;
49 private TextView mTextView;
54 mTextView = (TextView) itemView.findViewById(R.id.name);
77 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;
49 private TextView mTextView;
54 mTextView = (TextView) itemView.findViewById(R.id.name);
77 TextView view = itemHolder.mTextView;
  /external/robolectric/v1/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) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowButton.java 4 import android.widget.TextView;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListTakeFocusFromSide.java 28 import android.widget.TextView;
64 TextView view;
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
69 view = (TextView) convertView;
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleWithInternalScroll.java 24 import android.widget.TextView;
33 private TextView mTextBlob;
42 public TextView getTextBlob() {
56 mTextBlob = (TextView) findViewById(R.id.blob);

Completed in 2121 milliseconds

1 2 3 4 5 6 7 891011>>