赞
踩
遇到的问题: 我记得以前一直是 在application 里面设置了label就是我们APP的名字。也是桌面显示的当前APP叫什么。。但是今天发现显示的名字和设置的不一样。奇怪哪里出错了吗?还是另有隐情?
后来通过查询。我知道了 application的label 和Activity的label 设置以后对我们页面的title和APP名字是有区别的。
写了个Demo
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="APP名字"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:label="first"
>
android:label="second"
>
首先设置配置文件。设置 application的label 为 APP名字 设置启动的主页面的lable 为 first 第二个页面是second 通过代码
getTitle().toString()
获得当前的lable .
运行APP结果显示: APP名字是 first 第一个页面显示的lable 是 first 第二个页面显示的lable 是 second
2、修改了一下。。去掉主启动页的lable.重新运行
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。