请问如何修改android中页面顶部的文字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问如何修改android中页面顶部的文字相关的知识,希望对你有一定的参考价值。
就是修改这个上面的test1-3。请问如何修改这段文字?
在String中app_name的值换掉改,就是我标蓝的地方,有问题请追问
参考技术A具体的操作步骤:
在res/values添加styles.xml文件。
.在eclipse中,选择File -> New -> Other菜单
.在弹出窗口中,选择android/Android XML File,点击 Next
.在添加XML窗口中,输入文件名"styles.xml",选中Values,
输入文件夹路径"/res/values"
.然后点击 Finish
在res/values添加themes.xml文件。
styles.xml文件的代码
<resources xmlns:adnroid="http://schemas.android.com/apk/res/android">
<style name="CustomWindowTitleBackground" parent="android:WindowTitleBackground">
<item name="android:background">@drawable/bg</item>
</style>
<style name="CustomWindowTitle" parent="android:WindowTitle">
<item name="android:textAppearance">@style/CustomWindowTitleText</item>
</style>
<style name="CustomWindowTitleText" parent="android:TextAppearance.WindowTitle">
<item name="android:textColor">#00f</item>
<item name="android:textSize">14sp</item>
<item name="android:textStyle">bold</item>
</style>
</resources>
4. themes.xml文件的代码
<?xml version="1.0" encoding="utf-8"?><resources xmlns:adnroid="http://schemas.android.com/apk/res/android">
<style name="titleTheme" parent="android:Theme" >
<!-- <item name="android:windowTitleSize">30dp</item> -->
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
<item name="android:windowTitleStyle">@style/CustomWindowTitle</item>
</style>
</resources>
5. 修改工程的Manifest.xml文件
.在Activity中加入android:theme="@style/titleTheme"即可<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.customtitle"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".CustomTitle"
android:label="@string/app_name"
android:theme="@style/titleTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="9" />
</manifest> 参考技术B android工程里面有一个manifest.xml文件,在application这个节点下,有一个属性是android:label=“”,你把这个属性值改了就行 参考技术C 在AndoridManifest.xml里面
ses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
修改android:label属性
请问一下Sumatrapdf软件如何修改标签页那里的颜色改为其他颜色呢?
试了修改主窗口的背景颜色也没有变化
参考技术A 这个上网查一查以上是关于请问如何修改android中页面顶部的文字的主要内容,如果未能解决你的问题,请参考以下文章