改变标题栏内容的方式常用的有2种,一种是静态的,在AndroidMainFest.xml中指定:
加入:
android:label="@string/aboutTitle"
<activity android:name="cn.com.smartcost.offer.ui.AboutActivity"
android:parentActivityName="cn.com.smartcost.offer.ui.ListViewActivity"
android:label="@string/aboutTitle"
>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="cn.com.smartcost.offer.ui.ListViewActivity"
/>
</activity> getActionBar().setTitle(mDrawerTitle);
原文:http://blog.csdn.net/howlaa/article/details/19190963