OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextView
(Results
226 - 250
of
864
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
AddRssItem.java
24
import android.widget.
TextView
;
38
String title = ((
TextView
) findViewById(R.id.title_textbox)).getText().toString();
39
String url = ((
TextView
) findViewById(R.id.url_textbox)).getText().toString();
/development/samples/NFCDemo/src/com/example/android/nfc/record/
TextRecord.java
23
import android.widget.
TextView
;
48
TextView
text = (
TextView
) inflater.inflate(R.layout.tag_text, parent, false);
/development/samples/SpellChecker/HelloSpellChecker/src/com/example/android/hellospellchecker/
HelloSpellCheckerActivity.java
28
import android.widget.
TextView
;
33
private
TextView
mMainView;
40
mMainView = (
TextView
)findViewById(R.id.main);
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
ContactPhotoBinder.java
30
import android.widget.
TextView
;
39
* photo as a compound drawable on the
TextView
used to display the contact's
86
((
TextView
) view).setCompoundDrawables(d, null, null, null);
91
((
TextView
) view).setCompoundDrawables(d, null, null, null);
/external/replicaisland/src/com/replica/replicaisland/
DiaryActivity.java
29
import android.widget.
TextView
;
54
TextView
text = (
TextView
)findViewById(R.id.diarytext);
/frameworks/base/core/java/android/app/
TabActivity.java
23
import android.widget.
TextView
;
150
if (tabView != null && tabView instanceof
TextView
) {
151
((
TextView
) tabView).setText(title);
/frameworks/base/core/java/android/net/http/
SslCertificate.java
24
import android.widget.
TextView
;
442
((
TextView
) certificateView.findViewById(com.android.internal.R.id.to_common))
444
((
TextView
) certificateView.findViewById(com.android.internal.R.id.to_org))
446
((
TextView
) certificateView.findViewById(com.android.internal.R.id.to_org_unit))
450
((
TextView
) certificateView.findViewById(com.android.internal.R.id.serial_number))
456
((
TextView
) certificateView.findViewById(com.android.internal.R.id.by_common))
458
((
TextView
) certificateView.findViewById(com.android.internal.R.id.by_org))
460
((
TextView
) certificateView.findViewById(com.android.internal.R.id.by_org_unit))
466
((
TextView
) certificateView.findViewById(com.android.internal.R.id.issued_on))
471
((
TextView
) certificateView.findViewById(com.android.internal.R.id.expires_on)
[
all
...]
/frameworks/base/core/tests/coretests/src/android/view/
DrawableBgMinSize.java
31
import android.widget.
TextView
;
46
private
TextView
mTextView;
64
mTextView = (
TextView
) findViewById(R.id.text_view);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ListActivity.java
32
import android.widget.
TextView
;
117
TextView
v = (
TextView
) super.getView(position, convertView, parent);
TransparentListActivity.java
30
import android.widget.
TextView
;
111
TextView
v = (
TextView
) super.getView(position, convertView, parent);
ViewLayersActivity2.java
28
import android.widget.
TextView
;
58
TextView
v = (
TextView
) super.getView(position, convertView, parent);
ViewLayersActivity4.java
28
import android.widget.
TextView
;
62
TextView
v = (
TextView
) super.getView(position, convertView, parent);
ViewLayersActivity5.java
31
import android.widget.
TextView
;
68
TextView
v = (
TextView
) super.getView(position, convertView, parent);
/frameworks/base/tests/LargeAssetTest/src/com/android/largeassettest/
LargeAssetTest.java
27
import android.widget.
TextView
;
38
TextView
mResultText;
46
mResultText = (
TextView
) findViewById(R.id.result);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java
45
import android.widget.
TextView
;
61
protected abstract
TextView
getStyleableTextView();
200
protected
TextView
setText(int index, String stringReference) {
202
if (child instanceof
TextView
) {
203
TextView
textView
= (
TextView
) child;
204
setText(
textView
, stringReference);
205
return
textView
;
211
protected
TextView
setTextById(int id, String stringReference)
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBtEnableActivity.java
41
import android.widget.
TextView
;
71
TextView
contentView = (
TextView
)view.findViewById(R.id.content);
/packages/apps/Email/src/com/android/email/activity/
MessageCommandButtonView.java
25
import android.widget.
TextView
;
43
private
TextView
mMessagePosition;
81
mMessagePosition = (
TextView
) findViewById(R.id.message_position);
/packages/apps/Launcher2/src/com/android/launcher2/
AddAdapter.java
26
import android.widget.
TextView
;
84
TextView
textView
= (
TextView
) convertView;
85
textView
.setTag(item);
86
textView
.setText(item.text);
87
textView
.setCompoundDrawablesWithIntrinsicBounds(item.image, null, null, null);
ButtonDropTarget.java
23
import android.widget.
TextView
;
31
public class ButtonDropTarget extends
TextView
implements DropTarget, DragController.DragListener {
37
protected
TextView
mText;
/packages/apps/Tag/src/com/android/apps/tag/record/
MimeRecord.java
29
import android.widget.
TextView
;
60
TextView
text = (
TextView
) inflater.inflate(R.layout.tag_text, parent, false);
/packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java
8
import android.widget.
TextView
;
22
private
TextView
mText;
29
mText = (
TextView
) findViewById(R.id.preview);
/packages/experimental/LoaderApp/src/com/android/loaderapp/
CursorFactoryListAdapter.java
28
import android.widget.
TextView
;
56
TextView
name = (
TextView
) view.findViewById(R.id.name);
/packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsAdapter.java
28
import android.widget.
TextView
;
42
TextView
text1 = (
TextView
) view.findViewById(R.id.text1);
/development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentReceiveResult.java
33
import android.widget.
TextView
;
59
private
TextView
mResults;
85
// Retrieve the
TextView
widget that will display results.
86
mResults = (
TextView
)v.findViewById(R.id.results);
89
mResults.setText(mResults.getText(),
TextView
.BufferType.EDITABLE);
/development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java
35
import android.widget.
TextView
;
49
AutoCompleteTextView
textView
= (AutoCompleteTextView)
51
textView
.setAdapter(adapter);
65
final
TextView
view = (
TextView
) inflater.inflate(
73
((
TextView
) view).setText(cursor.getString(COLUMN_DISPLAY_NAME));
Completed in 1561 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>