как переопределить заголовок по умолчанию с пользовательским заголовком в Android - PullRequest
6 голосов
/ 07 декабря 2011

Я разработал собственную строку заголовка для своего приложения. Это хорошо работает и для меня. Но есть проблема. Заголовок по умолчанию виден (всего на секунду), прежде чем моя настраиваемая строка заголовка переопределяет его. Есть ли какое-либо решение отключить строку заголовка по умолчанию, которую предоставляет Android?

Мои коды были как ...

window_title.xml в res / layout

<?xml version="1.0" encoding="utf-8"?>
<TextView
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/myTitle"
 android:text="custom title bar"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:textColor="@color/titletextcolor"
 android:gravity ="center"/>

color.xml в res / values ​​

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="customTheme" parent="android:Theme"> 
    <item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground </item>
    </style> 
</resources>

styles.xml в res / values ​​

<?xml version="1.0" encoding="utf-8"?>
<resources>   
    <color name="titlebackgroundcolor">#303010</color>
    <color name="titletextcolor">#FFFF00</color>
</resources>

themes.xml в res / values ​​

<?xml version="1.0" encoding="utf-8"?>
<resources> 
   <style name="WindowTitleBackground">     
        <item name="android:background">@color/titlebackgroundcolor</item>       
    </style>
</resources>

И я также обновил активность моего manifest.xml как

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.title"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="7" />

    <application
        android:icon="@drawable/ic_launcher"
        android:theme="@style/customTheme"
        android:label="@string/app_name" >
        <activity
            android:name=".CustomTitleActivity"
            android:theme="@style/customTheme" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

и на моем методе onCreate я сделал как ..

super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.window_title);
final TextView myTitle = (TextView) findViewById(R.id.myTitle);
myTitle.setText("Converter");

И это тоже хорошо работает

Я закодировал как в http://www.edumobile.org/android/android-programming-tutorials/creating-a-custom-title-bar/ и это тоже хорошо работает ..

Есть ли в любом случае отключить заголовок по умолчанию, который идет первым?

1 Ответ

1 голос
/ 07 декабря 2011

почему вы переводите на android для строки заголовка, просто спроектируйте строку заголовка так, как вы хотите, и установите ее сверху в главном макете и используйте следующий код в onCreate перед настройкой макета

requestWindowFeature(Window.FEATURE_NO_TITLE);

вот пример ... определите строку заголовка в основном макете, например, если вы настраиваете main.xml в качестве макета своей деятельности, тогда ваш main.xml должен быть похож на

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
   //here i have used LinearLayout as example your's can be Relative or whatever

 //here my title bars layout starts containing an icon and a text your's can containing just text or whatever you want
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/my_title_background"
    android:orientation="horizontal" >

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="15dip"
        android:src="@drawable/my_icon" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="15dip"
        android:text="My Application title"
        android:textColor="#FFFFFF" />
</LinearLayout>

   //and here rest of your layut for your application functionality
</LinearLayout>

тогда в моих действиях java-файл, содержащий метод onCreate (), код будет таким:

 /** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.main);
    //restof code for my class

Вам не нужно устанавливать что-либо еще для строки заголовка, например, задавать темы и устанавливать другие функции или разрешения .......... Я надеюсь, что вы получили это

...