OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:hinttextview
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
TwoButtonMethod.java
54
private TextView
hintTextView
;
82
hintTextView
= (TextView) view.findViewById(R.id.two_button_hint_text);
157
if (
hintTextView
== null) {
160
hintTextView
.setVisibility(
163
hintTextView
.setText(hintText);
164
hintTextView
.animate().alpha(1f).start();
166
hintTextView
.setText(R.string.call_incoming_will_disconnect);
167
hintTextView
.animate().alpha(1f).start();
169
hintTextView
.animate().alpha(0f).start();
257
ObjectAnimator hintHide = ObjectAnimator.ofFloat(
hintTextView
, View.ALPHA, 0f)
[
all
...]
Completed in 631 milliseconds