1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
|
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.service.selectiontoolbar;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.animation.ValueAnimator;
import android.content.Context;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.drawable.AnimatedVectorDrawable;
import android.graphics.drawable.Drawable;
import android.os.IBinder;
import android.text.TextUtils;
import android.util.Log;
import android.util.Size;
import android.view.ContextThemeWrapper;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.SurfaceControlViewHost;
import android.view.View;
import android.view.ViewConfiguration;
import android.view.ViewGroup;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.AnimationUtils;
import android.view.animation.Interpolator;
import android.view.animation.Transformation;
import android.view.selectiontoolbar.ShowInfo;
import android.view.selectiontoolbar.ToolbarMenuItem;
import android.view.selectiontoolbar.WidgetInfo;
import android.widget.ArrayAdapter;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.TextView;
import com.android.internal.R;
import com.android.internal.util.Preconditions;
import com.android.internal.widget.floatingtoolbar.FloatingToolbar;
import java.io.PrintWriter;
import java.util.LinkedList;
import java.util.List;
import java.util.Objects;
/**
* This class is responsible for rendering/animation of the selection toolbar in the remote
* system process. It holds 2 panels (i.e. main panel and overflow panel) and an overflow
* button to transition between panels.
*
* @hide
*/
// TODO(b/215497659): share code with LocalFloatingToolbarPopup
final class RemoteSelectionToolbar {
private static final String TAG = "RemoteSelectionToolbar";
/* Minimum and maximum number of items allowed in the overflow. */
private static final int MIN_OVERFLOW_SIZE = 2;
private static final int MAX_OVERFLOW_SIZE = 4;
private final Context mContext;
/* Margins between the popup window and its content. */
private final int mMarginHorizontal;
private final int mMarginVertical;
/* View components */
private final ViewGroup mContentContainer; // holds all contents.
private final ViewGroup mMainPanel; // holds menu items that are initially displayed.
// holds menu items hidden in the overflow.
private final OverflowPanel mOverflowPanel;
private final ImageButton mOverflowButton; // opens/closes the overflow.
/* overflow button drawables. */
private final Drawable mArrow;
private final Drawable mOverflow;
private final AnimatedVectorDrawable mToArrow;
private final AnimatedVectorDrawable mToOverflow;
private final OverflowPanelViewHelper mOverflowPanelViewHelper;
/* Animation interpolators. */
private final Interpolator mLogAccelerateInterpolator;
private final Interpolator mFastOutSlowInInterpolator;
private final Interpolator mLinearOutSlowInInterpolator;
private final Interpolator mFastOutLinearInInterpolator;
/* Animations. */
private final AnimatorSet mShowAnimation;
private final AnimatorSet mDismissAnimation;
private final AnimatorSet mHideAnimation;
private final AnimationSet mOpenOverflowAnimation;
private final AnimationSet mCloseOverflowAnimation;
private final Animation.AnimationListener mOverflowAnimationListener;
private final Rect mViewPortOnScreen = new Rect(); // portion of screen we can draw in.
private final int mLineHeight;
private final int mIconTextSpacing;
private final long mSelectionToolbarToken;
private IBinder mHostInputToken;
private final SelectionToolbarRenderService.RemoteCallbackWrapper mCallbackWrapper;
private final SelectionToolbarRenderService.TransferTouchListener mTransferTouchListener;
private int mPopupWidth;
private int mPopupHeight;
// Coordinates to show the toolbar relative to the specified view port
private final Point mRelativeCoordsForToolbar = new Point();
private List<ToolbarMenuItem> mMenuItems;
private SurfaceControlViewHost mSurfaceControlViewHost;
private SurfaceControlViewHost.SurfacePackage mSurfacePackage;
/**
* @see OverflowPanelViewHelper#preparePopupContent().
*/
private final Runnable mPreparePopupContentRTLHelper = new Runnable() {
@Override
public void run() {
setPanelsStatesAtRestingPosition();
mContentContainer.setAlpha(1);
}
};
private boolean mDismissed = true; // tracks whether this popup is dismissed or dismissing.
private boolean mHidden; // tracks whether this popup is hidden or hiding.
/* Calculated sizes for panels and overflow button. */
private final Size mOverflowButtonSize;
private Size mOverflowPanelSize; // Should be null when there is no overflow.
private Size mMainPanelSize;
/* Menu items and click listeners */
private final View.OnClickListener mMenuItemButtonOnClickListener;
private boolean mOpenOverflowUpwards; // Whether the overflow opens upwards or downwards.
private boolean mIsOverflowOpen;
private int mTransitionDurationScale; // Used to scale the toolbar transition duration.
private final Rect mPreviousContentRect = new Rect();
private final Rect mTempContentRect = new Rect();
private final Rect mTempContentRectForRoot = new Rect();
private final int[] mTempCoords = new int[2];
RemoteSelectionToolbar(Context context, long selectionToolbarToken, ShowInfo showInfo,
SelectionToolbarRenderService.RemoteCallbackWrapper callbackWrapper,
SelectionToolbarRenderService.TransferTouchListener transferTouchListener) {
mContext = applyDefaultTheme(context, showInfo.isIsLightTheme());
mSelectionToolbarToken = selectionToolbarToken;
mCallbackWrapper = callbackWrapper;
mTransferTouchListener = transferTouchListener;
mHostInputToken = showInfo.getHostInputToken();
mContentContainer = createContentContainer(mContext);
mMarginHorizontal = mContext.getResources()
.getDimensionPixelSize(R.dimen.floating_toolbar_horizontal_margin);
mMarginVertical = mContext.getResources()
.getDimensionPixelSize(R.dimen.floating_toolbar_vertical_margin);
mLineHeight = mContext.getResources()
.getDimensionPixelSize(R.dimen.floating_toolbar_height);
mIconTextSpacing = mContext.getResources()
.getDimensionPixelSize(R.dimen.floating_toolbar_icon_text_spacing);
// Interpolators
mLogAccelerateInterpolator = new LogAccelerateInterpolator();
mFastOutSlowInInterpolator = AnimationUtils.loadInterpolator(
mContext, android.R.interpolator.fast_out_slow_in);
mLinearOutSlowInInterpolator = AnimationUtils.loadInterpolator(
mContext, android.R.interpolator.linear_out_slow_in);
mFastOutLinearInInterpolator = AnimationUtils.loadInterpolator(
mContext, android.R.interpolator.fast_out_linear_in);
// Drawables. Needed for views.
mArrow = mContext.getResources()
.getDrawable(R.drawable.ft_avd_tooverflow, mContext.getTheme());
mArrow.setAutoMirrored(true);
mOverflow = mContext.getResources()
.getDrawable(R.drawable.ft_avd_toarrow, mContext.getTheme());
mOverflow.setAutoMirrored(true);
mToArrow = (AnimatedVectorDrawable) mContext.getResources()
.getDrawable(R.drawable.ft_avd_toarrow_animation, mContext.getTheme());
mToArrow.setAutoMirrored(true);
mToOverflow = (AnimatedVectorDrawable) mContext.getResources()
.getDrawable(R.drawable.ft_avd_tooverflow_animation, mContext.getTheme());
mToOverflow.setAutoMirrored(true);
// Views
mOverflowButton = createOverflowButton();
mOverflowButtonSize = measure(mOverflowButton);
mMainPanel = createMainPanel();
mOverflowPanelViewHelper = new OverflowPanelViewHelper(mContext, mIconTextSpacing);
mOverflowPanel = createOverflowPanel();
// Animation. Need views.
mOverflowAnimationListener = createOverflowAnimationListener();
mOpenOverflowAnimation = new AnimationSet(true);
mOpenOverflowAnimation.setAnimationListener(mOverflowAnimationListener);
mCloseOverflowAnimation = new AnimationSet(true);
mCloseOverflowAnimation.setAnimationListener(mOverflowAnimationListener);
mShowAnimation = createEnterAnimation(mContentContainer,
new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
updateFloatingToolbarRootContentRect();
}
});
mDismissAnimation = createExitAnimation(
mContentContainer,
150, // startDelay
new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
// TODO(b/215497659): should dismiss window after animation
mContentContainer.removeAllViews();
mSurfaceControlViewHost.release();
mSurfaceControlViewHost = null;
mSurfacePackage = null;
}
});
mHideAnimation = createExitAnimation(
mContentContainer,
0, // startDelay
null); // TODO(b/215497659): should handle hide after animation
mMenuItemButtonOnClickListener = v -> {
Object tag = v.getTag();
if (!(tag instanceof ToolbarMenuItem)) {
return;
}
mCallbackWrapper.onMenuItemClicked((ToolbarMenuItem) tag);
};
}
private void updateFloatingToolbarRootContentRect() {
if (mSurfaceControlViewHost == null) {
return;
}
final FloatingToolbarRoot root = (FloatingToolbarRoot) mSurfaceControlViewHost.getView();
mContentContainer.getLocationOnScreen(mTempCoords);
int contentLeft = mTempCoords[0];
int contentTop = mTempCoords[1];
mTempContentRectForRoot.set(contentLeft, contentTop,
contentLeft + mContentContainer.getWidth(),
contentTop + mContentContainer.getHeight());
root.setContentRect(mTempContentRectForRoot);
}
private WidgetInfo createWidgetInfo() {
mTempContentRect.set(mRelativeCoordsForToolbar.x, mRelativeCoordsForToolbar.y,
mRelativeCoordsForToolbar.x + mPopupWidth,
mRelativeCoordsForToolbar.y + mPopupHeight);
return new WidgetInfo(mSelectionToolbarToken, mTempContentRect, getSurfacePackage());
}
private SurfaceControlViewHost.SurfacePackage getSurfacePackage() {
if (mSurfaceControlViewHost == null) {
final FloatingToolbarRoot contentHolder = new FloatingToolbarRoot(mContext,
mHostInputToken, mTransferTouchListener);
contentHolder.addView(mContentContainer);
mSurfaceControlViewHost = new SurfaceControlViewHost(mContext, mContext.getDisplay(),
mHostInputToken);
mSurfaceControlViewHost.setView(contentHolder, mPopupWidth, mPopupHeight);
}
if (mSurfacePackage == null) {
mSurfacePackage = mSurfaceControlViewHost.getSurfacePackage();
}
return mSurfacePackage;
}
private void layoutMenuItems(
List<ToolbarMenuItem> menuItems,
int suggestedWidth) {
cancelOverflowAnimations();
clearPanels();
menuItems = layoutMainPanelItems(menuItems, getAdjustedToolbarWidth(suggestedWidth));
if (!menuItems.isEmpty()) {
// Add remaining items to the overflow.
layoutOverflowPanelItems(menuItems);
}
updatePopupSize();
}
public void onToolbarShowTimeout() {
mCallbackWrapper.onToolbarShowTimeout();
}
/**
* Show the specified selection toolbar.
*/
public void show(ShowInfo showInfo) {
debugLog("show() for " + showInfo);
mMenuItems = showInfo.getMenuItems();
mViewPortOnScreen.set(showInfo.getViewPortOnScreen());
debugLog("show(): layoutRequired=" + showInfo.isLayoutRequired());
if (showInfo.isLayoutRequired()) {
layoutMenuItems(mMenuItems, showInfo.getSuggestedWidth());
}
Rect contentRect = showInfo.getContentRect();
if (!isShowing()) {
show(contentRect);
} else if (!mPreviousContentRect.equals(contentRect)) {
updateCoordinates(contentRect);
}
mPreviousContentRect.set(contentRect);
}
private void show(Rect contentRectOnScreen) {
Objects.requireNonNull(contentRectOnScreen);
mHidden = false;
mDismissed = false;
cancelDismissAndHideAnimations();
cancelOverflowAnimations();
refreshCoordinatesAndOverflowDirection(contentRectOnScreen);
preparePopupContent();
mCallbackWrapper.onShown(createWidgetInfo());
// TODO(b/215681595): Use Choreographer to coordinate for show between different thread
mShowAnimation.start();
}
/**
* Dismiss the specified selection toolbar.
*/
public void dismiss(long floatingToolbarToken) {
debugLog("dismiss for " + floatingToolbarToken);
if (mDismissed) {
return;
}
mHidden = false;
mDismissed = true;
mHideAnimation.cancel();
mDismissAnimation.start();
}
/**
* Hide the specified selection toolbar.
*/
public void hide(long floatingToolbarToken) {
debugLog("hide for " + floatingToolbarToken);
if (!isShowing()) {
return;
}
mHidden = true;
mHideAnimation.start();
}
public boolean isShowing() {
return !mDismissed && !mHidden;
}
private void updateCoordinates(Rect contentRectOnScreen) {
Objects.requireNonNull(contentRectOnScreen);
if (!isShowing()) {
return;
}
cancelOverflowAnimations();
refreshCoordinatesAndOverflowDirection(contentRectOnScreen);
preparePopupContent();
WidgetInfo widgetInfo = createWidgetInfo();
mSurfaceControlViewHost.relayout(mPopupWidth, mPopupHeight);
mCallbackWrapper.onWidgetUpdated(widgetInfo);
}
private void refreshCoordinatesAndOverflowDirection(Rect contentRectOnScreen) {
// Initialize x ensuring that the toolbar isn't rendered behind the nav bar in
// landscape.
final int x = Math.min(
contentRectOnScreen.centerX() - mPopupWidth / 2,
mViewPortOnScreen.right - mPopupWidth);
final int y;
final int availableHeightAboveContent =
contentRectOnScreen.top - mViewPortOnScreen.top;
final int availableHeightBelowContent =
mViewPortOnScreen.bottom - contentRectOnScreen.bottom;
final int margin = 2 * mMarginVertical;
final int toolbarHeightWithVerticalMargin = mLineHeight + margin;
if (!hasOverflow()) {
if (availableHeightAboveContent >= toolbarHeightWithVerticalMargin) {
// There is enough space at the top of the content.
y = contentRectOnScreen.top - toolbarHeightWithVerticalMargin;
} else if (availableHeightBelowContent >= toolbarHeightWithVerticalMargin) {
// There is enough space at the bottom of the content.
y = contentRectOnScreen.bottom;
} else if (availableHeightBelowContent >= mLineHeight) {
// Just enough space to fit the toolbar with no vertical margins.
y = contentRectOnScreen.bottom - mMarginVertical;
} else {
// Not enough space. Prefer to position as high as possible.
y = Math.max(
mViewPortOnScreen.top,
contentRectOnScreen.top - toolbarHeightWithVerticalMargin);
}
} else {
// Has an overflow.
final int minimumOverflowHeightWithMargin =
calculateOverflowHeight(MIN_OVERFLOW_SIZE) + margin;
final int availableHeightThroughContentDown =
mViewPortOnScreen.bottom - contentRectOnScreen.top
+ toolbarHeightWithVerticalMargin;
final int availableHeightThroughContentUp =
contentRectOnScreen.bottom - mViewPortOnScreen.top
+ toolbarHeightWithVerticalMargin;
if (availableHeightAboveContent >= minimumOverflowHeightWithMargin) {
// There is enough space at the top of the content rect for the overflow.
// Position above and open upwards.
updateOverflowHeight(availableHeightAboveContent - margin);
y = contentRectOnScreen.top - mPopupHeight;
mOpenOverflowUpwards = true;
} else if (availableHeightAboveContent >= toolbarHeightWithVerticalMargin
&& availableHeightThroughContentDown >= minimumOverflowHeightWithMargin) {
// There is enough space at the top of the content rect for the main panel
// but not the overflow.
// Position above but open downwards.
updateOverflowHeight(availableHeightThroughContentDown - margin);
y = contentRectOnScreen.top - toolbarHeightWithVerticalMargin;
mOpenOverflowUpwards = false;
} else if (availableHeightBelowContent >= minimumOverflowHeightWithMargin) {
// There is enough space at the bottom of the content rect for the overflow.
// Position below and open downwards.
updateOverflowHeight(availableHeightBelowContent - margin);
y = contentRectOnScreen.bottom;
mOpenOverflowUpwards = false;
} else if (availableHeightBelowContent >= toolbarHeightWithVerticalMargin
&& mViewPortOnScreen.height() >= minimumOverflowHeightWithMargin) {
// There is enough space at the bottom of the content rect for the main panel
// but not the overflow.
// Position below but open upwards.
updateOverflowHeight(availableHeightThroughContentUp - margin);
y = contentRectOnScreen.bottom + toolbarHeightWithVerticalMargin
- mPopupHeight;
mOpenOverflowUpwards = true;
} else {
// Not enough space.
// Position at the top of the view port and open downwards.
updateOverflowHeight(mViewPortOnScreen.height() - margin);
y = mViewPortOnScreen.top;
mOpenOverflowUpwards = false;
}
}
mRelativeCoordsForToolbar.set(x, y);
}
private void cancelDismissAndHideAnimations() {
mDismissAnimation.cancel();
mHideAnimation.cancel();
}
private void cancelOverflowAnimations() {
mContentContainer.clearAnimation();
mMainPanel.animate().cancel();
mOverflowPanel.animate().cancel();
mToArrow.stop();
mToOverflow.stop();
}
private void openOverflow() {
final int targetWidth = mOverflowPanelSize.getWidth();
final int targetHeight = mOverflowPanelSize.getHeight();
final int startWidth = mContentContainer.getWidth();
final int startHeight = mContentContainer.getHeight();
final float startY = mContentContainer.getY();
final float left = mContentContainer.getX();
final float right = left + mContentContainer.getWidth();
Animation widthAnimation = new Animation() {
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
int deltaWidth = (int) (interpolatedTime * (targetWidth - startWidth));
setWidth(mContentContainer, startWidth + deltaWidth);
if (isInRTLMode()) {
mContentContainer.setX(left);
// Lock the panels in place.
mMainPanel.setX(0);
mOverflowPanel.setX(0);
} else {
mContentContainer.setX(right - mContentContainer.getWidth());
// Offset the panels' positions so they look like they're locked in place
// on the screen.
mMainPanel.setX(mContentContainer.getWidth() - startWidth);
mOverflowPanel.setX(mContentContainer.getWidth() - targetWidth);
}
}
};
Animation heightAnimation = new Animation() {
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
int deltaHeight = (int) (interpolatedTime * (targetHeight - startHeight));
setHeight(mContentContainer, startHeight + deltaHeight);
if (mOpenOverflowUpwards) {
mContentContainer.setY(
startY - (mContentContainer.getHeight() - startHeight));
positionContentYCoordinatesIfOpeningOverflowUpwards();
}
}
};
final float overflowButtonStartX = mOverflowButton.getX();
final float overflowButtonTargetX =
isInRTLMode() ? overflowButtonStartX + targetWidth - mOverflowButton.getWidth()
: overflowButtonStartX - targetWidth + mOverflowButton.getWidth();
Animation overflowButtonAnimation = new Animation() {
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
float overflowButtonX = overflowButtonStartX
+ interpolatedTime * (overflowButtonTargetX - overflowButtonStartX);
float deltaContainerWidth =
isInRTLMode() ? 0 : mContentContainer.getWidth() - startWidth;
float actualOverflowButtonX = overflowButtonX + deltaContainerWidth;
mOverflowButton.setX(actualOverflowButtonX);
updateFloatingToolbarRootContentRect();
}
};
widthAnimation.setInterpolator(mLogAccelerateInterpolator);
widthAnimation.setDuration(getAnimationDuration());
heightAnimation.setInterpolator(mFastOutSlowInInterpolator);
heightAnimation.setDuration(getAnimationDuration());
overflowButtonAnimation.setInterpolator(mFastOutSlowInInterpolator);
overflowButtonAnimation.setDuration(getAnimationDuration());
mOpenOverflowAnimation.getAnimations().clear();
mOpenOverflowAnimation.addAnimation(widthAnimation);
mOpenOverflowAnimation.addAnimation(heightAnimation);
mOpenOverflowAnimation.addAnimation(overflowButtonAnimation);
mContentContainer.startAnimation(mOpenOverflowAnimation);
mIsOverflowOpen = true;
mMainPanel.animate()
.alpha(0).withLayer()
.setInterpolator(mLinearOutSlowInInterpolator)
.setDuration(250)
.start();
mOverflowPanel.setAlpha(1); // fadeIn in 0ms.
}
private void closeOverflow() {
final int targetWidth = mMainPanelSize.getWidth();
final int startWidth = mContentContainer.getWidth();
final float left = mContentContainer.getX();
final float right = left + mContentContainer.getWidth();
Animation widthAnimation = new Animation() {
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
int deltaWidth = (int) (interpolatedTime * (targetWidth - startWidth));
setWidth(mContentContainer, startWidth + deltaWidth);
if (isInRTLMode()) {
mContentContainer.setX(left);
// Lock the panels in place.
mMainPanel.setX(0);
mOverflowPanel.setX(0);
} else {
mContentContainer.setX(right - mContentContainer.getWidth());
// Offset the panels' positions so they look like they're locked in place
// on the screen.
mMainPanel.setX(mContentContainer.getWidth() - targetWidth);
mOverflowPanel.setX(mContentContainer.getWidth() - startWidth);
}
}
};
final int targetHeight = mMainPanelSize.getHeight();
final int startHeight = mContentContainer.getHeight();
final float bottom = mContentContainer.getY() + mContentContainer.getHeight();
Animation heightAnimation = new Animation() {
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
int deltaHeight = (int) (interpolatedTime * (targetHeight - startHeight));
setHeight(mContentContainer, startHeight + deltaHeight);
if (mOpenOverflowUpwards) {
mContentContainer.setY(bottom - mContentContainer.getHeight());
positionContentYCoordinatesIfOpeningOverflowUpwards();
}
}
};
final float overflowButtonStartX = mOverflowButton.getX();
final float overflowButtonTargetX =
isInRTLMode() ? overflowButtonStartX - startWidth + mOverflowButton.getWidth()
: overflowButtonStartX + startWidth - mOverflowButton.getWidth();
Animation overflowButtonAnimation = new Animation() {
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
float overflowButtonX = overflowButtonStartX
+ interpolatedTime * (overflowButtonTargetX - overflowButtonStartX);
float deltaContainerWidth =
isInRTLMode() ? 0 : mContentContainer.getWidth() - startWidth;
float actualOverflowButtonX = overflowButtonX + deltaContainerWidth;
mOverflowButton.setX(actualOverflowButtonX);
updateFloatingToolbarRootContentRect();
}
};
widthAnimation.setInterpolator(mFastOutSlowInInterpolator);
widthAnimation.setDuration(getAnimationDuration());
heightAnimation.setInterpolator(mLogAccelerateInterpolator);
heightAnimation.setDuration(getAnimationDuration());
overflowButtonAnimation.setInterpolator(mFastOutSlowInInterpolator);
overflowButtonAnimation.setDuration(getAnimationDuration());
mCloseOverflowAnimation.getAnimations().clear();
mCloseOverflowAnimation.addAnimation(widthAnimation);
mCloseOverflowAnimation.addAnimation(heightAnimation);
mCloseOverflowAnimation.addAnimation(overflowButtonAnimation);
mContentContainer.startAnimation(mCloseOverflowAnimation);
mIsOverflowOpen = false;
mMainPanel.animate()
.alpha(1).withLayer()
.setInterpolator(mFastOutLinearInInterpolator)
.setDuration(100)
.start();
mOverflowPanel.animate()
.alpha(0).withLayer()
.setInterpolator(mLinearOutSlowInInterpolator)
.setDuration(150)
.start();
}
/**
* Defines the position of the floating toolbar popup panels when transition animation has
* stopped.
*/
private void setPanelsStatesAtRestingPosition() {
mOverflowButton.setEnabled(true);
mOverflowPanel.awakenScrollBars();
if (mIsOverflowOpen) {
// Set open state.
final Size containerSize = mOverflowPanelSize;
setSize(mContentContainer, containerSize);
mMainPanel.setAlpha(0);
mMainPanel.setVisibility(View.INVISIBLE);
mOverflowPanel.setAlpha(1);
mOverflowPanel.setVisibility(View.VISIBLE);
mOverflowButton.setImageDrawable(mArrow);
mOverflowButton.setContentDescription(mContext.getString(
R.string.floating_toolbar_close_overflow_description));
// Update x-coordinates depending on RTL state.
if (isInRTLMode()) {
mContentContainer.setX(mMarginHorizontal); // align left
mMainPanel.setX(0); // align left
mOverflowButton.setX(// align right
containerSize.getWidth() - mOverflowButtonSize.getWidth());
mOverflowPanel.setX(0); // align left
} else {
mContentContainer.setX(// align right
mPopupWidth - containerSize.getWidth() - mMarginHorizontal);
mMainPanel.setX(-mContentContainer.getX()); // align right
mOverflowButton.setX(0); // align left
mOverflowPanel.setX(0); // align left
}
// Update y-coordinates depending on overflow's open direction.
if (mOpenOverflowUpwards) {
mContentContainer.setY(mMarginVertical); // align top
mMainPanel.setY(// align bottom
containerSize.getHeight() - mContentContainer.getHeight());
mOverflowButton.setY(// align bottom
containerSize.getHeight() - mOverflowButtonSize.getHeight());
mOverflowPanel.setY(0); // align top
} else {
// opens downwards.
mContentContainer.setY(mMarginVertical); // align top
mMainPanel.setY(0); // align top
mOverflowButton.setY(0); // align top
mOverflowPanel.setY(mOverflowButtonSize.getHeight()); // align bottom
}
} else {
// Overflow not open. Set closed state.
final Size containerSize = mMainPanelSize;
setSize(mContentContainer, containerSize);
mMainPanel.setAlpha(1);
mMainPanel.setVisibility(View.VISIBLE);
mOverflowPanel.setAlpha(0);
mOverflowPanel.setVisibility(View.INVISIBLE);
mOverflowButton.setImageDrawable(mOverflow);
mOverflowButton.setContentDescription(mContext.getString(
R.string.floating_toolbar_open_overflow_description));
if (hasOverflow()) {
// Update x-coordinates depending on RTL state.
if (isInRTLMode()) {
mContentContainer.setX(mMarginHorizontal); // align left
mMainPanel.setX(0); // align left
mOverflowButton.setX(0); // align left
mOverflowPanel.setX(0); // align left
} else {
mContentContainer.setX(// align right
mPopupWidth - containerSize.getWidth() - mMarginHorizontal);
mMainPanel.setX(0); // align left
mOverflowButton.setX(// align right
containerSize.getWidth() - mOverflowButtonSize.getWidth());
mOverflowPanel.setX(// align right
containerSize.getWidth() - mOverflowPanelSize.getWidth());
}
// Update y-coordinates depending on overflow's open direction.
if (mOpenOverflowUpwards) {
mContentContainer.setY(// align bottom
mMarginVertical + mOverflowPanelSize.getHeight()
- containerSize.getHeight());
mMainPanel.setY(0); // align top
mOverflowButton.setY(0); // align top
mOverflowPanel.setY(// align bottom
containerSize.getHeight() - mOverflowPanelSize.getHeight());
} else {
// opens downwards.
mContentContainer.setY(mMarginVertical); // align top
mMainPanel.setY(0); // align top
mOverflowButton.setY(0); // align top
mOverflowPanel.setY(mOverflowButtonSize.getHeight()); // align bottom
}
} else {
// No overflow.
mContentContainer.setX(mMarginHorizontal); // align left
mContentContainer.setY(mMarginVertical); // align top
mMainPanel.setX(0); // align left
mMainPanel.setY(0); // align top
}
}
}
private void updateOverflowHeight(int suggestedHeight) {
if (hasOverflow()) {
final int maxItemSize =
(suggestedHeight - mOverflowButtonSize.getHeight()) / mLineHeight;
final int newHeight = calculateOverflowHeight(maxItemSize);
if (mOverflowPanelSize.getHeight() != newHeight) {
mOverflowPanelSize = new Size(mOverflowPanelSize.getWidth(), newHeight);
}
setSize(mOverflowPanel, mOverflowPanelSize);
if (mIsOverflowOpen) {
setSize(mContentContainer, mOverflowPanelSize);
if (mOpenOverflowUpwards) {
final int deltaHeight = mOverflowPanelSize.getHeight() - newHeight;
mContentContainer.setY(mContentContainer.getY() + deltaHeight);
mOverflowButton.setY(mOverflowButton.getY() - deltaHeight);
}
} else {
setSize(mContentContainer, mMainPanelSize);
}
updatePopupSize();
}
}
private void updatePopupSize() {
int width = 0;
int height = 0;
if (mMainPanelSize != null) {
width = Math.max(width, mMainPanelSize.getWidth());
height = Math.max(height, mMainPanelSize.getHeight());
}
if (mOverflowPanelSize != null) {
width = Math.max(width, mOverflowPanelSize.getWidth());
height = Math.max(height, mOverflowPanelSize.getHeight());
}
mPopupWidth = width + mMarginHorizontal * 2;
mPopupHeight = height + mMarginVertical * 2;
maybeComputeTransitionDurationScale();
}
private int getAdjustedToolbarWidth(int suggestedWidth) {
int width = suggestedWidth;
int maximumWidth = mViewPortOnScreen.width() - 2 * mContext.getResources()
.getDimensionPixelSize(R.dimen.floating_toolbar_horizontal_margin);
if (width <= 0) {
width = mContext.getResources()
.getDimensionPixelSize(R.dimen.floating_toolbar_preferred_width);
}
return Math.min(width, maximumWidth);
}
private boolean isInRTLMode() {
return mContext.getApplicationInfo().hasRtlSupport()
&& mContext.getResources().getConfiguration().getLayoutDirection()
== View.LAYOUT_DIRECTION_RTL;
}
private boolean hasOverflow() {
return mOverflowPanelSize != null;
}
/**
* Fits as many menu items in the main panel and returns a list of the menu items that
* were not fit in.
*
* @return The menu items that are not included in this main panel.
*/
private List<ToolbarMenuItem> layoutMainPanelItems(List<ToolbarMenuItem> menuItems,
int toolbarWidth) {
final LinkedList<ToolbarMenuItem> remainingMenuItems = new LinkedList<>();
// add the overflow menu items to the end of the remainingMenuItems list.
final LinkedList<ToolbarMenuItem> overflowMenuItems = new LinkedList();
for (ToolbarMenuItem menuItem : menuItems) {
if (menuItem.getItemId() != android.R.id.textAssist
&& menuItem.getPriority() == ToolbarMenuItem.PRIORITY_OVERFLOW) {
overflowMenuItems.add(menuItem);
} else {
remainingMenuItems.add(menuItem);
}
}
remainingMenuItems.addAll(overflowMenuItems);
mMainPanel.removeAllViews();
mMainPanel.setPaddingRelative(0, 0, 0, 0);
int availableWidth = toolbarWidth;
boolean isFirstItem = true;
while (!remainingMenuItems.isEmpty()) {
ToolbarMenuItem menuItem = remainingMenuItems.peek();
// if this is the first item, regardless of requiresOverflow(), it should be
// displayed on the main panel. Otherwise all items including this one will be
// overflow items, and should be displayed in overflow panel.
if (!isFirstItem && menuItem.getPriority() == ToolbarMenuItem.PRIORITY_OVERFLOW) {
break;
}
final boolean showIcon = isFirstItem && menuItem.getItemId() == R.id.textAssist;
final View menuItemButton = createMenuItemButton(
mContext, menuItem, mIconTextSpacing, showIcon);
if (!showIcon && menuItemButton instanceof LinearLayout) {
((LinearLayout) menuItemButton).setGravity(Gravity.CENTER);
}
// Adding additional start padding for the first button to even out button spacing.
if (isFirstItem) {
menuItemButton.setPaddingRelative(
(int) (1.5 * menuItemButton.getPaddingStart()),
menuItemButton.getPaddingTop(),
menuItemButton.getPaddingEnd(),
menuItemButton.getPaddingBottom());
}
// Adding additional end padding for the last button to even out button spacing.
boolean isLastItem = remainingMenuItems.size() == 1;
if (isLastItem) {
menuItemButton.setPaddingRelative(
menuItemButton.getPaddingStart(),
menuItemButton.getPaddingTop(),
(int) (1.5 * menuItemButton.getPaddingEnd()),
menuItemButton.getPaddingBottom());
}
menuItemButton.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
final int menuItemButtonWidth = Math.min(
menuItemButton.getMeasuredWidth(), toolbarWidth);
// Check if we can fit an item while reserving space for the overflowButton.
final boolean canFitWithOverflow =
menuItemButtonWidth <= availableWidth - mOverflowButtonSize.getWidth();
final boolean canFitNoOverflow =
isLastItem && menuItemButtonWidth <= availableWidth;
if (canFitWithOverflow || canFitNoOverflow) {
menuItemButton.setTag(menuItem);
menuItemButton.setOnClickListener(mMenuItemButtonOnClickListener);
// Set tooltips for main panel items, but not overflow items (b/35726766).
menuItemButton.setTooltipText(menuItem.getTooltipText());
mMainPanel.addView(menuItemButton);
final ViewGroup.LayoutParams params = menuItemButton.getLayoutParams();
params.width = menuItemButtonWidth;
menuItemButton.setLayoutParams(params);
availableWidth -= menuItemButtonWidth;
remainingMenuItems.pop();
} else {
break;
}
isFirstItem = false;
}
if (!remainingMenuItems.isEmpty()) {
// Reserve space for overflowButton.
mMainPanel.setPaddingRelative(0, 0, mOverflowButtonSize.getWidth(), 0);
}
mMainPanelSize = measure(mMainPanel);
return remainingMenuItems;
}
private void layoutOverflowPanelItems(List<ToolbarMenuItem> menuItems) {
ArrayAdapter<ToolbarMenuItem> overflowPanelAdapter =
(ArrayAdapter<ToolbarMenuItem>) mOverflowPanel.getAdapter();
overflowPanelAdapter.clear();
final int size = menuItems.size();
for (int i = 0; i < size; i++) {
overflowPanelAdapter.add(menuItems.get(i));
}
mOverflowPanel.setAdapter(overflowPanelAdapter);
if (mOpenOverflowUpwards) {
mOverflowPanel.setY(0);
} else {
mOverflowPanel.setY(mOverflowButtonSize.getHeight());
}
int width = Math.max(getOverflowWidth(), mOverflowButtonSize.getWidth());
int height = calculateOverflowHeight(MAX_OVERFLOW_SIZE);
mOverflowPanelSize = new Size(width, height);
setSize(mOverflowPanel, mOverflowPanelSize);
}
/**
* Resets the content container and appropriately position it's panels.
*/
private void preparePopupContent() {
mContentContainer.removeAllViews();
// Add views in the specified order so they stack up as expected.
// Order: overflowPanel, mainPanel, overflowButton.
if (hasOverflow()) {
mContentContainer.addView(mOverflowPanel);
}
mContentContainer.addView(mMainPanel);
if (hasOverflow()) {
mContentContainer.addView(mOverflowButton);
}
setPanelsStatesAtRestingPosition();
// The positioning of contents in RTL is wrong when the view is first rendered.
// Hide the view and post a runnable to recalculate positions and render the view.
// TODO: Investigate why this happens and fix.
if (isInRTLMode()) {
mContentContainer.setAlpha(0);
mContentContainer.post(mPreparePopupContentRTLHelper);
}
}
/**
* Clears out the panels and their container. Resets their calculated sizes.
*/
private void clearPanels() {
mIsOverflowOpen = false;
mMainPanelSize = null;
mMainPanel.removeAllViews();
mOverflowPanelSize = null;
ArrayAdapter<ToolbarMenuItem> overflowPanelAdapter =
(ArrayAdapter<ToolbarMenuItem>) mOverflowPanel.getAdapter();
overflowPanelAdapter.clear();
mOverflowPanel.setAdapter(overflowPanelAdapter);
mContentContainer.removeAllViews();
}
private void positionContentYCoordinatesIfOpeningOverflowUpwards() {
if (mOpenOverflowUpwards) {
mMainPanel.setY(mContentContainer.getHeight() - mMainPanelSize.getHeight());
mOverflowButton.setY(mContentContainer.getHeight() - mOverflowButton.getHeight());
mOverflowPanel.setY(mContentContainer.getHeight() - mOverflowPanelSize.getHeight());
}
}
private int getOverflowWidth() {
int overflowWidth = 0;
final int count = mOverflowPanel.getAdapter().getCount();
for (int i = 0; i < count; i++) {
ToolbarMenuItem menuItem = (ToolbarMenuItem) mOverflowPanel.getAdapter().getItem(i);
overflowWidth =
Math.max(mOverflowPanelViewHelper.calculateWidth(menuItem), overflowWidth);
}
return overflowWidth;
}
private int calculateOverflowHeight(int maxItemSize) {
// Maximum of 4 items, minimum of 2 if the overflow has to scroll.
int actualSize = Math.min(
MAX_OVERFLOW_SIZE,
Math.min(
Math.max(MIN_OVERFLOW_SIZE, maxItemSize),
mOverflowPanel.getCount()));
int extension = 0;
if (actualSize < mOverflowPanel.getCount()) {
// The overflow will require scrolling to get to all the items.
// Extend the height so that part of the hidden items is displayed.
extension = (int) (mLineHeight * 0.5f);
}
return actualSize * mLineHeight
+ mOverflowButtonSize.getHeight()
+ extension;
}
/**
* NOTE: Use only in android.view.animation.* animations. Do not use in android.animation.*
* animations. See comment about this in the code.
*/
private int getAnimationDuration() {
if (mTransitionDurationScale < 150) {
// For smaller transition, decrease the time.
return 200;
} else if (mTransitionDurationScale > 300) {
// For bigger transition, increase the time.
return 300;
}
// Scale the animation duration with getDurationScale(). This allows
// android.view.animation.* animations to scale just like android.animation.* animations
// when animator duration scale is adjusted in "Developer Options".
// For this reason, do not use this method for android.animation.* animations.
return (int) (250 * ValueAnimator.getDurationScale());
}
private void maybeComputeTransitionDurationScale() {
if (mMainPanelSize != null && mOverflowPanelSize != null) {
int w = mMainPanelSize.getWidth() - mOverflowPanelSize.getWidth();
int h = mOverflowPanelSize.getHeight() - mMainPanelSize.getHeight();
mTransitionDurationScale = (int) (Math.sqrt(w * w + h * h)
/ mContentContainer.getContext().getResources().getDisplayMetrics().density);
}
}
private ViewGroup createMainPanel() {
return new LinearLayout(mContext) {
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (isOverflowAnimating()) {
// Update widthMeasureSpec to make sure that this view is not clipped
// as we offset its coordinates with respect to its parent.
widthMeasureSpec = MeasureSpec.makeMeasureSpec(
mMainPanelSize.getWidth(),
MeasureSpec.EXACTLY);
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
// Intercept the touch event while the overflow is animating.
return isOverflowAnimating();
}
};
}
private ImageButton createOverflowButton() {
final ImageButton overflowButton = (ImageButton) LayoutInflater.from(mContext)
.inflate(R.layout.floating_popup_overflow_button, null);
overflowButton.setImageDrawable(mOverflow);
overflowButton.setOnClickListener(v -> {
if (isShowing()) {
preparePopupContent();
WidgetInfo widgetInfo = createWidgetInfo();
mSurfaceControlViewHost.relayout(mPopupWidth, mPopupHeight);
mCallbackWrapper.onWidgetUpdated(widgetInfo);
}
if (mIsOverflowOpen) {
overflowButton.setImageDrawable(mToOverflow);
mToOverflow.start();
closeOverflow();
} else {
overflowButton.setImageDrawable(mToArrow);
mToArrow.start();
openOverflow();
}
});
return overflowButton;
}
private OverflowPanel createOverflowPanel() {
final OverflowPanel overflowPanel = new OverflowPanel(this);
overflowPanel.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
overflowPanel.setDivider(null);
overflowPanel.setDividerHeight(0);
final ArrayAdapter adapter =
new ArrayAdapter<ToolbarMenuItem>(mContext, 0) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
return mOverflowPanelViewHelper.getView(
getItem(position), mOverflowPanelSize.getWidth(), convertView);
}
};
overflowPanel.setAdapter(adapter);
overflowPanel.setOnItemClickListener((parent, view, position, id) -> {
ToolbarMenuItem menuItem =
(ToolbarMenuItem) overflowPanel.getAdapter().getItem(position);
mCallbackWrapper.onMenuItemClicked(menuItem);
});
return overflowPanel;
}
private boolean isOverflowAnimating() {
final boolean overflowOpening = mOpenOverflowAnimation.hasStarted()
&& !mOpenOverflowAnimation.hasEnded();
final boolean overflowClosing = mCloseOverflowAnimation.hasStarted()
&& !mCloseOverflowAnimation.hasEnded();
return overflowOpening || overflowClosing;
}
private Animation.AnimationListener createOverflowAnimationListener() {
return new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
// Disable the overflow button while it's animating.
// It will be re-enabled when the animation stops.
mOverflowButton.setEnabled(false);
// Ensure both panels have visibility turned on when the overflow animation
// starts.
mMainPanel.setVisibility(View.VISIBLE);
mOverflowPanel.setVisibility(View.VISIBLE);
}
@Override
public void onAnimationEnd(Animation animation) {
// Posting this because it seems like this is called before the animation
// actually ends.
mContentContainer.post(() -> {
setPanelsStatesAtRestingPosition();
});
}
@Override
public void onAnimationRepeat(Animation animation) {
}
};
}
private static Size measure(View view) {
Preconditions.checkState(view.getParent() == null);
view.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
return new Size(view.getMeasuredWidth(), view.getMeasuredHeight());
}
private static void setSize(View view, int width, int height) {
view.setMinimumWidth(width);
view.setMinimumHeight(height);
ViewGroup.LayoutParams params = view.getLayoutParams();
params = (params == null) ? new ViewGroup.LayoutParams(0, 0) : params;
params.width = width;
params.height = height;
view.setLayoutParams(params);
}
private static void setSize(View view, Size size) {
setSize(view, size.getWidth(), size.getHeight());
}
private static void setWidth(View view, int width) {
ViewGroup.LayoutParams params = view.getLayoutParams();
setSize(view, width, params.height);
}
private static void setHeight(View view, int height) {
ViewGroup.LayoutParams params = view.getLayoutParams();
setSize(view, params.width, height);
}
/**
* A custom ListView for the overflow panel.
*/
private static final class OverflowPanel extends ListView {
private final RemoteSelectionToolbar mPopup;
OverflowPanel(RemoteSelectionToolbar popup) {
super(Objects.requireNonNull(popup).mContext);
this.mPopup = popup;
setScrollBarDefaultDelayBeforeFade(ViewConfiguration.getScrollDefaultDelay() * 3);
setScrollIndicators(View.SCROLL_INDICATOR_TOP | View.SCROLL_INDICATOR_BOTTOM);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// Update heightMeasureSpec to make sure that this view is not clipped
// as we offset it's coordinates with respect to its parent.
int height = mPopup.mOverflowPanelSize.getHeight()
- mPopup.mOverflowButtonSize.getHeight();
heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
if (mPopup.isOverflowAnimating()) {
// Eat the touch event.
return true;
}
return super.dispatchTouchEvent(ev);
}
@Override
protected boolean awakenScrollBars() {
return super.awakenScrollBars();
}
}
/**
* A custom interpolator used for various floating toolbar animations.
*/
private static final class LogAccelerateInterpolator implements Interpolator {
private static final int BASE = 100;
private static final float LOGS_SCALE = 1f / computeLog(1, BASE);
private static float computeLog(float t, int base) {
return (float) (1 - Math.pow(base, -t));
}
@Override
public float getInterpolation(float t) {
return 1 - computeLog(1 - t, BASE) * LOGS_SCALE;
}
}
/**
* A helper for generating views for the overflow panel.
*/
private static final class OverflowPanelViewHelper {
private final Context mContext;
private final View mCalculator;
private final int mIconTextSpacing;
private final int mSidePadding;
OverflowPanelViewHelper(Context context, int iconTextSpacing) {
mContext = Objects.requireNonNull(context);
mIconTextSpacing = iconTextSpacing;
mSidePadding = context.getResources()
.getDimensionPixelSize(R.dimen.floating_toolbar_overflow_side_padding);
mCalculator = createMenuButton(null);
}
public View getView(ToolbarMenuItem menuItem, int minimumWidth, View convertView) {
Objects.requireNonNull(menuItem);
if (convertView != null) {
updateMenuItemButton(
convertView, menuItem, mIconTextSpacing, shouldShowIcon(menuItem));
} else {
convertView = createMenuButton(menuItem);
}
convertView.setMinimumWidth(minimumWidth);
return convertView;
}
public int calculateWidth(ToolbarMenuItem menuItem) {
updateMenuItemButton(
mCalculator, menuItem, mIconTextSpacing, shouldShowIcon(menuItem));
mCalculator.measure(
View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
return mCalculator.getMeasuredWidth();
}
private View createMenuButton(ToolbarMenuItem menuItem) {
View button = createMenuItemButton(
mContext, menuItem, mIconTextSpacing, shouldShowIcon(menuItem));
button.setPadding(mSidePadding, 0, mSidePadding, 0);
return button;
}
private boolean shouldShowIcon(ToolbarMenuItem menuItem) {
if (menuItem != null) {
return menuItem.getGroupId() == android.R.id.textAssist;
}
return false;
}
}
/**
* Creates and returns a menu button for the specified menu item.
*/
private static View createMenuItemButton(
Context context, ToolbarMenuItem menuItem, int iconTextSpacing, boolean showIcon) {
final View menuItemButton = LayoutInflater.from(context)
.inflate(R.layout.floating_popup_menu_button, null);
if (menuItem != null) {
updateMenuItemButton(menuItemButton, menuItem, iconTextSpacing, showIcon);
}
return menuItemButton;
}
/**
* Updates the specified menu item button with the specified menu item data.
*/
private static void updateMenuItemButton(View menuItemButton, ToolbarMenuItem menuItem,
int iconTextSpacing, boolean showIcon) {
final TextView buttonText = menuItemButton.findViewById(
R.id.floating_toolbar_menu_item_text);
buttonText.setEllipsize(null);
if (TextUtils.isEmpty(menuItem.getTitle())) {
buttonText.setVisibility(View.GONE);
} else {
buttonText.setVisibility(View.VISIBLE);
buttonText.setText(menuItem.getTitle());
}
final ImageView buttonIcon = menuItemButton.findViewById(
R.id.floating_toolbar_menu_item_image);
if (menuItem.getIcon() == null || !showIcon) {
buttonIcon.setVisibility(View.GONE);
buttonText.setPaddingRelative(0, 0, 0, 0);
} else {
buttonIcon.setVisibility(View.VISIBLE);
buttonIcon.setImageDrawable(
menuItem.getIcon().loadDrawable(menuItemButton.getContext()));
buttonText.setPaddingRelative(iconTextSpacing, 0, 0, 0);
}
final CharSequence contentDescription = menuItem.getContentDescription();
if (TextUtils.isEmpty(contentDescription)) {
menuItemButton.setContentDescription(menuItem.getTitle());
} else {
menuItemButton.setContentDescription(contentDescription);
}
}
private static ViewGroup createContentContainer(Context context) {
ViewGroup contentContainer = (ViewGroup) LayoutInflater.from(context)
.inflate(R.layout.floating_popup_container, null);
contentContainer.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
contentContainer.setTag(FloatingToolbar.FLOATING_TOOLBAR_TAG);
contentContainer.setClipToOutline(true);
return contentContainer;
}
/**
* Creates an "appear" animation for the specified view.
*
* @param view The view to animate
*/
private static AnimatorSet createEnterAnimation(View view, Animator.AnimatorListener listener) {
AnimatorSet animation = new AnimatorSet();
animation.playTogether(
ObjectAnimator.ofFloat(view, View.ALPHA, 0, 1).setDuration(150));
animation.addListener(listener);
return animation;
}
/**
* Creates a "disappear" animation for the specified view.
*
* @param view The view to animate
* @param startDelay The start delay of the animation
* @param listener The animation listener
*/
private static AnimatorSet createExitAnimation(
View view, int startDelay, Animator.AnimatorListener listener) {
AnimatorSet animation = new AnimatorSet();
animation.playTogether(
ObjectAnimator.ofFloat(view, View.ALPHA, 1, 0).setDuration(100));
animation.setStartDelay(startDelay);
if (listener != null) {
animation.addListener(listener);
}
return animation;
}
/**
* Returns a re-themed context with controlled look and feel for views.
*/
private static Context applyDefaultTheme(Context originalContext, boolean isLightTheme) {
int themeId =
isLightTheme ? R.style.Theme_DeviceDefault_Light : R.style.Theme_DeviceDefault;
return new ContextThemeWrapper(originalContext, themeId);
}
private static void debugLog(String message) {
if (Log.isLoggable(FloatingToolbar.FLOATING_TOOLBAR_TAG, Log.DEBUG)) {
Log.v(TAG, message);
}
}
void dump(String prefix, PrintWriter pw) {
pw.print(prefix); pw.print("toolbar token: "); pw.println(mSelectionToolbarToken);
pw.print(prefix); pw.print("dismissed: "); pw.println(mDismissed);
pw.print(prefix); pw.print("hidden: "); pw.println(mHidden);
pw.print(prefix); pw.print("popup width: "); pw.println(mPopupWidth);
pw.print(prefix); pw.print("popup height: "); pw.println(mPopupHeight);
pw.print(prefix); pw.print("relative coords: "); pw.println(mRelativeCoordsForToolbar);
pw.print(prefix); pw.print("main panel size: "); pw.println(mMainPanelSize);
boolean hasOverflow = hasOverflow();
pw.print(prefix); pw.print("has overflow: "); pw.println(hasOverflow);
if (hasOverflow) {
pw.print(prefix); pw.print("overflow open: "); pw.println(mIsOverflowOpen);
pw.print(prefix); pw.print("overflow size: "); pw.println(mOverflowPanelSize);
}
if (mSurfaceControlViewHost != null) {
FloatingToolbarRoot root = (FloatingToolbarRoot) mSurfaceControlViewHost.getView();
root.dump(prefix, pw);
}
if (mMenuItems != null) {
int menuItemSize = mMenuItems.size();
pw.print(prefix); pw.print("number menu items: "); pw.println(menuItemSize);
for (int i = 0; i < menuItemSize; i++) {
pw.print(prefix); pw.print("#"); pw.println(i);
pw.print(prefix + " "); pw.println(mMenuItems.get(i));
}
}
}
}
|