ToolBar修改返回按钮图标

2018-12-09 22:48:14

使用Toolbar时,有时因为不同的手机设备,不能使用系统默认的主题样式或者图标,必须指定特定的资源,防止APP在不同设备上的效果不一样! 

我在使用Toolbar时,把这个布局作为一个公共的了,所以修改起来比较容易,下面是该Toolbar的布局文件:


<?xml version="1.0" encoding="utf-8"?>

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:id="@+id/toolbar"

    android:layout_height="wrap_content"

    android:background="?attr/day_actionbar_bg">


    <TextView

        android:id="@+id/tv_title"

        android:layout_width="wrap_content"

        android:layout_height="match_parent"

        android:layout_gravity="center"

        android:textSize="@dimen/actionbar_txtSize"

        android:textColor="?attr/common_login_txtbg"/>

</android.support.v7.widget.Toolbar>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

在跟节点加上这几句i就可以了:


    xmlns:app="http://schemas.android.com/apk/res-auto"

        app:navigationIcon="@drawable/navigationIcon"

    android:navigationIcon="@drawable/navigationIcon"

1

2

3

就可以修改返回按钮的图标样式了, 

完整的布局代码是这样的:


<?xml version="1.0" encoding="utf-8"?>

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:id="@+id/toolbar"

    xmlns:app="http://schemas.android.com/apk/res-auto"

    app:navigationIcon="@drawable/navigationIcon"

    android:navigationIcon="@drawable/navigationIcon"

    android:layout_height="wrap_content"

    android:background="?attr/day_actionbar_bg">


    <TextView

        android:id="@+id/tv_title"

        android:layout_width="wrap_content"

        android:layout_height="match_parent"

        android:layout_gravity="center"

        android:textSize="@dimen/actionbar_txtSize"

        android:textColor="?attr/common_login_txtbg"/>

</android.support.v7.widget.Toolbar>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

修改返回按钮成功!


Menu菜单文字的颜色修改:

使用ToolBar时,需要右上角的菜单按钮,菜单的文字按钮颜色也需要修改,在app的主题里修改就可以了,主题中加个:




<item name="android:actionMenuTextColor">#329da3</item>


1

2

3

4

5

但只有menu中item设置showAsAction为always的时候才有用,


  • 2020-11-22 23:31:22

    Dagger2与AndroidInjector详解

    相信使用过Dagger开发Android应用的小伙伴会知道(如果你还不是很了解Daager,可以先看我之前的一篇基本介绍:Dagger2使用攻略),我们会在Activity或Fragment的生命周期方法中执行成员注入。比如这样:

  • 2020-11-23 08:52:59

    asm.js 和 Emscripten 入门教程

    asm.js 就是为了解决这两个问题而设计的:它的变量一律都是静态类型,并且取消垃圾回收机制。除了这两点,它与 JavaScript 并无差异,也就是说,asm.js 是 JavaScript 的一个严格的子集,只能使用后者的一部分语法。

  • 2020-11-23 09:11:07

    爬虫——记一次破解前端加密详细过程

    从最初使用webdriver+selenium爬虫到现在利用http请求解析html,经历过各种各样的问题,webdriver+selenium这种办法虽然万能,而且可以用JS写解析脚本方便调试,

  • 2020-11-24 19:18:43

    nuxtjs打成用于webview的相对路径

    路径为绝对路径,当项目的域名为二级域名的时候,就不能打包为这绝对路径了。 nuxt不同于vue项目,思索了许久,终于找到了配置的地方

  • 2020-11-24 23:22:59

    eruda,移动端网页调试神器

    webapp或者移动端网页需要嵌入到app时候,尤其是在APP内置的webView上加载我们的页面,想要查看手机浏览器信息是非常困难的事,当出现问题的时候,你又不能查看日志,一般会连接本地测试环境,然后在alert来打印日志