- MainActivity: 移除 action_gallery 按钮,替换为 action_mi_gallery (小米相册) - MainActivity: 移除 action_reset_gallery 按钮及响应代码 - ImageViewerActivity: 新增 btn_gallery 按钮,点击当前浏览图片打开相册选择器 - menu_main: 删除 action_gallery 和 action_reset_gallery 菜单项 - drawable: ic_cover 颜色改为白色以适配暗色工具栏 - drawable: 新增 ic_mi_gallery (小米相册图标),删除 ic_cover_reset - strings: 新增 mi_gallery 字符串资源
17 lines
758 B
XML
17 lines
758 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:width="24dp"
|
|
android:height="24dp"
|
|
android:viewportWidth="24"
|
|
android:viewportHeight="24">
|
|
<path
|
|
android:fillColor="#000000"
|
|
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8s-3.59,8 -8,8z"/>
|
|
<path
|
|
android:fillColor="#000000"
|
|
android:pathData="M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5s-2.24,-5 -5,-5zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3s-1.34,3 -3,3z"/>
|
|
<path
|
|
android:fillColor="#000000"
|
|
android:pathData="M8,12l1.5,-2l2,2.5l2.5,-3l2,2.5"/>
|
|
</vector>
|