改变标题栏内容的方式常用的有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>
另一种是动态的,在activity中设定:
getActionBar().setTitle(mDrawerTitle);