目前它只显示应用程序的名称,我希望它显示一些自定义的内容,并且在我的应用程序中的每个屏幕上都不同。
例如:我的主屏幕可能会在操作栏中显示“page1”,而应用切换到的另一个活动可能在该屏幕操作栏中显示“page2”。
仅供参考,ActionBar是在 API 级别 11 中引入的。ActionBar 是 Activity 顶部的一个窗口功能,可以显示 Activity 标题 、导航模式和其他交互项目,如搜索。
我完全记得自定义标题栏并使其在应用程序中保持一致。所以我可以和早期做一个比较,可以列出使用ActionBar的一些优点:
例如:
getActionBar().setTitle("Hello world App"); getSupportActionBar().setTitle("Hello world App"); // provide compatibility to all the versions
@Override public void setActionBar(String heading) { // TODO Auto-generated method stub com.actionbarsherlock.app.ActionBar actionBar = getSupportActionBar(); actionBar.setHomeButtonEnabled(true); actionBar.setDisplayHomeAsUpEnabled(false); actionBar.setDisplayShowHomeEnabled(false); actionBar.setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.title_bar_gray))); actionBar.setTitle(heading); actionBar.show(); }
ActionBar 为您提供基本和熟悉的外观、导航模式和其他要执行的快速操作。但这并不意味着它在每个应用程序中看起来都一样。您可以根据您的 UI 和设计要求对其进行自定义。您只需要定义和编写样式和主题。
阅读更多内容:样式化操作栏
如果你想为 ActionBar 生成样式,那么这个 Style Generator 工具可以帮助你。
您可以通过设置它们来更改每个屏幕的标题(即活动) Android:label
Android:label
<activity android:name=".Hello_World" android:label="This is the Hello World Application"> </activity>
但是,如果您想以自己的方式自定义标题栏,即 Want to put Image icon and custom-text ,那么以下代码适用于我:
Want to put Image icon and custom-text
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"/>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="400dp" android:layout_height="fill_parent" android:orientation="horizontal"> <ImageView android:id="@+id/ImageView01" android:layout_width="57dp" android:layout_height="wrap_content" android:background="@drawable/icon1"/> <TextView android:id="@+id/myTitle" android:text="This is my new title" android:layout_width="fill_parent" android:layout_height="fill_parent" android:textColor="@color/titletextcolor" /> </LinearLayout>
public class TitleBar extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); setContentView(R.layout.main); if (customTitleSupported) { getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar); } final TextView myTitleText = (TextView) findViewById(R.id.myTitle); if (myTitleText != null) { myTitleText.setText("NEW TITLE"); // user can also set color using "Color" and then // "Color value constant" // myTitleText.setBackgroundColor(Color.GREEN); } } }
strings.xml 文件在该 values 文件夹下定义。
values
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, Set_Text_TitleBar!</string> <string name="app_name">Set_Text_TitleBar</string> <color name="titlebackgroundcolor">#3232CD</color> <color name="titletextcolor">#FFFF00</color> </resources>