可以在android源代码里找 \frameworks\base\core\res\res\drawable\
http://developer.android.com/guide/practices/ui_guidelines/icon_design.html
Standard menu icons
Shown below are standard menu icons that are included in the Android platform (as of Android 1.5). You can reference any of these icon resources from your application as needed, but make sure that the action you assign to the icon is consistent with that listed. Note that this is not a complete list of icons and that the actual appearance of standard icons may change across platform versions.
To reference one of the icons from your code, use android.R.drawable.<icon_resource_identifier>
. For example, you can call a menu item's setIcon()
method and pass the resource name:
.setIcon(android.R.drawable.ic_menu_more);
.
You could reference the same icon from a layout file using android:icon="@android:drawable/ic_menu_more">
.
To determine the resource ID for an icon listed below, hover over the icon or simply look at image filenames, which use the format "<icon_resource_identifier>.png".
Add
|
Call
|
Camera
|
Clear / Close / Cancel / Discard
|
Compass
|
Delete
|
Directions
|
Edit
|
Gallery
|
Help
|
Info / details
|
Map mode
|
My Location
|
More
|
Preferences
|
Rotate
|
Save
|
Send
|
Search
|
Share
|
Upload
|
View
|
Zoom
|
分享到:
相关推荐
->add(Menu::new()->add(Link::to('/about', 'About'))->add(Link::to('/contact', 'Contact'))) ->render(); ``` ### 动态内容与条件 为了实现动态内容,`menu-builder`支持在添加菜单项时使用闭包。例如,根据...
$menu->add('个人中心', ['route' => 'profile'])->permission('view_profile'); } ``` 6. **自定义视图** 默认情况下,`laravel-menu`使用内置的Blade模板渲染菜单。但你可以自定义视图来适应你的前端框架,如...
$menu->add('博客', '/blog')->addClass('active')->setAttribute('data-target', '#blog'); ``` 八、菜单深度与嵌套 `laravel-menus`允许无限级别的菜单嵌套。只需在创建子菜单时继续使用`add`方法即可: ```php ...
CoolClock->Touch in screen(Or click menu)->Setting Trigger Screen Slide over to turn screen on and off is via proximity sensor(It's near by earpiece), but you need activate device administrator ...
#### 2.25 App->Menu->InflatefromXML 这部分内容介绍了如何从XML文件中加载菜单资源。 #### 2.26 App->Notification->IncomingMessage 介绍了如何实现消息通知,包括如何监听消息接收事件。 #### 2.27 App->...
|----> menu_item_data.c -- 展示 item_name() 等等函数的用法 |----> menu_multi_column.c -- 建立多列菜单 |----> menu_scroll.c -- 展示菜单滚动的示例 |----> menu_simple.c -- 一个用方向键控制菜单的例子 ...
$menu->add('产品', function ($subMenu) { $subMenu->add('产品A', 'product-a'); $subMenu->add('产品B', 'product-b')->withChildren(function ($childMenu) { $childMenu->add('子产品B1', 'sub-product-b1'...
- 从其他应用返回:onPause() -> onStop() -> onRestart() -> onStart() -> onResume() 4. **Notification(通知)**: - Notification在状态栏显示提醒,通常不会打断用户当前操作,但可以在设置中配置其行为。 ...
"android-snake-menu-炫酷动画菜单"是一个开源项目,旨在为开发者提供一种创新的菜单展示方式,通过独特的动画效果提升应用的交互性。该项目由GitHub用户xmuSistone创建,其代码仓库位于...
$menu->add('关于我们', '/about'); }); ``` 这里,`make` 方法用于创建菜单实例,然后通过回调函数向菜单添加项。 ### 3. 层级菜单 Viviniko 的菜单支持嵌套,可以创建多层菜单结构。例如: ```php $menu->add...
##### (25) App->Menu->InflatefromXML - **目的**:掌握如何从XML文件中加载菜单资源。 - **主要内容**: - 创建XML菜单资源文件。 - 在Activity中加载并显示菜单项。 ##### (26) App->Notification->Incoming...