背景
“ActionBarDrawerToggle”的 CTOR 是这样的:
public ActionBarDrawerToggle (Activity activity, DrawerLayout drawerLayout, int openDrawerContentDescRes, int closeDrawerContentDescRes)
或者:
public ActionBarDrawerToggle (Activity activity, DrawerLayout drawerLayout, Toolbar toolbar, int openDrawerContentDescRes, int closeDrawerContentDescRes)
该文档告诉您有关字符串参数的信息,即(此处):
必须提供字符串资源来描述无障碍服务的打开/关闭抽屉操作。
问题
我找不到正在使用这些字符串的场景。
我试过的
与操作项目相反,每次我长按一个项目时我都可以看到祝酒词,在这里我找不到在这种情况下我可以看到它。
问题
为什么需要它?在哪些情况下显示?
就像 ImageView 发生的事情一样吗?如果是这样,我仍然想知道这些字符串何时使用以及如何使用(在 ImageView 和此处)。