OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SnackBar
(Results
1 - 8
of
8
) sorted by null
/packages/apps/Messaging/src/com/android/messaging/ui/
SnackBarInteraction.java
25
* An interface that defines how a component can be animated with an {@link
SnackBar
}.
29
* Returns the animator that will be run in reaction to the given
SnackBar
being shown.
31
* Implementations may return null here if it determines that the given
SnackBar
does not need
34
ViewPropertyAnimator animateOnSnackBarShow(
SnackBar
snackBar
);
37
* Returns the animator that will be run in reaction to the given
SnackBar
being dismissed.
39
* Implementations may return null here if it determines that the given
SnackBar
does not need
42
ViewPropertyAnimator animateOnSnackBarDismiss(
SnackBar
snackBar
);
46
* {@link
SnackBar
} is always shown with {@link Gravity#BOTTOM} and that the provided View wil
[
all
...]
SnackBarManager.java
39
import com.android.messaging.ui.
SnackBar
.Placement;
40
import com.android.messaging.ui.
SnackBar
.SnackBarListener;
76
// Dismiss the {@link
SnackBar
} but don't consume the event.
92
private
SnackBar
mCurrentSnackBar;
93
private
SnackBar
mLatestSnackBar;
94
private
SnackBar
mNextSnackBar;
104
public
SnackBar
getLatestSnackBar() {
108
public
SnackBar
.Builder newBuilder(final View parentView) {
109
return new
SnackBar
.Builder(this, parentView);
113
* The given
snackBar
is not guaranteed to be shown. If the previous snackBar is animating away
[
all
...]
SnackBar.java
36
public class
SnackBar
{
181
public
SnackBar
build() {
182
return new
SnackBar
(this);
205
private
SnackBar
(final Builder builder) {
/packages/apps/Messaging/src/com/android/messaging/util/
ChangeDefaultSmsAppHelper.java
26
import com.android.messaging.ui.
SnackBar
;
46
* @param rootView - if non-null, use this to attach a
snackBar
98
SnackBar
.Action.createCustomAction(mChangeSmsAppSettingRunnable,
101
SnackBar
.Placement.above(composeView));
UiUtils.java
49
import com.android.messaging.ui.
SnackBar
;
50
import com.android.messaging.ui.
SnackBar
.Placement;
119
SnackBar
.Action action = null;
121
case
SnackBar
.Action.SNACK_BAR_UNDO:
122
action =
SnackBar
.Action.createUndoAction(runnable);
124
case
SnackBar
.Action.SNACK_BAR_RETRY:
125
action =
SnackBar
.Action.createRetryAction(runnable);
138
@NonNull final
SnackBar
.Action action,
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
AbstractConversationListActivity.java
38
import com.android.messaging.ui.
SnackBar
;
121
SnackBar
.Action.createCustomAction(new Runnable() {
187
SnackBar
.Action.SNACK_BAR_UNDO,
205
SnackBar
.Action.SNACK_BAR_UNDO, mConversationListFragment.getSnackBarInteractions());
335
SnackBar
.Action.SNACK_BAR_UNDO, mInteractions);
ConversationListItemView.java
51
import com.android.messaging.ui.
SnackBar
;
550
SnackBar
.Action.SNACK_BAR_UNDO,
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationFragment.java
86
import com.android.messaging.ui.
SnackBar
;
[
all
...]
Completed in 182 milliseconds