J
Jman
Neues Mitglied
- 0
Hi!
Ich möchte, dass in meiner Titelbar das Activity label angezeigt wird, und nicht für jede Activity das Application label. Wie mache ich das? So, wie ich das bisher verstanden habe, müsste eigenltich das Activity-Label verwendet werden, sofern definiert.
Hier die hoffentlich relevanten Codeausschnitte:
AndroidManifest:
Main activity z.B.:
Warum wird in der Titelbar immer der Appname verwendet?
Danke!
Edit: Sorry, auf einmal geht es....dabei habe ich nichts geändert.
Ich möchte, dass in meiner Titelbar das Activity label angezeigt wird, und nicht für jede Activity das Application label. Wie mache ich das? So, wie ich das bisher verstanden habe, müsste eigenltich das Activity-Label verwendet werden, sofern definiert.
Hier die hoffentlich relevanten Codeausschnitte:
AndroidManifest:
Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="..."
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<service
android:name="..." >
</service>
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
...
Main activity z.B.:
Code:
<LinearLayout 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="#000000"
android:orientation="vertical" >
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
...
Warum wird in der Titelbar immer der Appname verwendet?
Danke!
Edit: Sorry, auf einmal geht es....dabei habe ich nichts geändert.
Zuletzt bearbeitet: