OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textView
(Results
51 - 57
of
57
) sorted by null
1
2
3
/frameworks/base/policy/src/com/android/internal/policy/impl/
LockScreen.java
63
private
TextView
mCarrier;
65
private
TextView
mTime;
66
private
TextView
mDate;
67
private
TextView
mStatus1;
68
private
TextView
mStatus2;
69
private
TextView
mScreenLocked;
70
private
TextView
mEmergencyCallText;
199
mCarrier = (
TextView
) findViewById(R.id.carrier);
204
mDate = (
TextView
) findViewById(R.id.date);
205
mStatus1 = (
TextView
) findViewById(R.id.status1)
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/
SelectCalendarsAdapter.java
37
import android.widget.
TextView
;
282
TextView
textView
= (
TextView
) view.findViewById(id);
283
textView
.setText(text);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidatesViewManager.java
46
import android.widget.
TextView
;
150
private
TextView
mViewCandidateTemplate;
156
private
TextView
mFullViewPrevView;
176
&& (v instanceof
TextView
)) {
198
if (v instanceof
TextView
) {
199
TextView
text = (
TextView
)v;
226
int wordcount = ((
TextView
)v).getId();
375
TextView
tv = createCandidateView();
380
TextView
tv = createCandidateView()
[
all
...]
/frameworks/base/core/java/android/preference/
Preference.java
37
import android.widget.
TextView
;
434
TextView
textView
= (
TextView
) view.findViewById(com.android.internal.R.id.title);
435
if (
textView
!= null) {
436
textView
.setText(getTitle());
439
textView
= (
TextView
) view.findViewById(com.android.internal.R.id.summary);
440
if (
textView
!= null) {
443
if (
textView
.getVisibility() != View.VISIBLE)
[
all
...]
/packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java
117
import android.widget.
TextView
;
161
implements View.OnClickListener,
TextView
.OnEditorActionListener,
232
private
TextView
mTextCounter; // Shows the number of characters used in text editor
732
TextView
textView
;
738
textView
= (
TextView
) msglistItem.findViewById(R.id.text_view);
739
if (
textView
!= null) {
740
text =
textView
.getText();
741
selStart =
textView
.getSelectionStart()
[
all
...]
/frameworks/base/core/java/android/widget/
TextView.java
119
* Displays text to the user and optionally allows them to edit it. A
TextView
127
* See {@link android.R.styleable#
TextView
TextView
Attributes},
193
public class
TextView
extends View implements ViewTreeObserver.OnPreDrawListener {
194
static final String LOG_TAG = "
TextView
";
251
* This flag is set if the
TextView
tries to display an error before it
301
// Set when this
TextView
gained focus with some text selected. Will start selection mode.
334
boolean onEditorAction(
TextView
v, int actionId, KeyEvent event);
337
public
TextView
(Context context) {
341
public
TextView
(Context context
[
all
...]
/prebuilt/darwin-x86_64/swt/
swt.jar
Completed in 620 milliseconds
1
2
3