0

I am new to the Android and I am working on a partially completed Android project.

In all the screens of my app there is a header bar which has the logo of the app and the app name in the left. This header is automatically added to the newly created xml files too. But I want to remove the app icon from this header bar. When I look at my .xml file I don't find any reference to the logo or the app name. I suspect the header is defined globally somewhere in the project. How do I find that in my project so that I can edit it?

enter image description here

I want to remove the 'SD' image from the header. Here is my 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>
Ramaraj T
  • 5,184
  • 4
  • 35
  • 68

0 Answers0