Android项目的全局标题栏

时间:2016-03-29 18:08:01

标签: android xml

我是Android新手,我正在开发一个部分完成的Android项目。

在我的应用的所有屏幕中都有一个标题栏,其中包含应用徽标和左侧的应用名称。此标头也会自动添加到新创建的xml文件中。但我想从此标题栏中删除应用程序图标。当我查看我的.xml文件时,我找不到对徽标或应用名称的任何引用。我怀疑标题是在项目的某个地方全局定义的。如何在我的项目中找到它以便我可以编辑它?

enter image description here

我想删除' SD'标题中的图像。这是我的xml。

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg_main"
    tools:context=".AlbumFragment" >

    <fragment
        android:id="@+id/fragmentBook"
        android:name="com.hcpt.course.fragment.BookFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <fragment
        android:id="@+id/fragmentBookMark"
        android:name="com.hcpt.course.fragment.BookMarkFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <fragment
        android:id="@+id/fragmentSetting"
        android:name="com.hcpt.course.fragment.SettingFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <fragment
        android:id="@+id/fragmentAbout"
        android:name="com.hcpt.course.fragment.AboutFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</RelativeLayout>

0 个答案:

没有答案