Answers:
仅供参考,动作条在API级别11动作条被引入处于活动的顶部的窗口的功能,可以显示活动标题,导航模式,和其它交互式项目,如搜索。
我确实记得自定义标题栏并使其在应用程序中保持一致。因此,我可以与以前进行比较,并列出使用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生成样式,则此样式生成器工具可以为您提供帮助。
================================================== ==============================
您可以通过设置每个屏幕的标题来更改每个屏幕的标题(即“活动”) Android:label
<activity android:name=".Hello_World"
android:label="This is the Hello World Application">
</activity>
但是,如果您想以自己的方式自定义标题栏,即 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
文件夹下定义。
<?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>
我们可以通过以下两种方式之一来更改ActionBar标题:
在清单:清单文件中,设置每个活动的标签。
android:label="@string/TitleWhichYouWantToDisplay"
在代码中:在代码中,使用String或String的id作为参数调用setTitle()方法。
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
setTitle(R.string.TitleWhichYouWantToDisplay);
// OR You can also use the line below
// setTitle("MyTitle")
setContentView(R.layout.activity_main);
}
}
getActionBar().setTitle("edit your text");
更改操作栏名称的最简单方法是转到AndroidManifest.xml并键入以下代码。
<activity android:name=".MainActivity"
android:label="Your Label> </activity>
ActionBar ab = getActionBar();
TextView tv = new TextView(getApplicationContext());
LayoutParams lp = new RelativeLayout.LayoutParams(
LayoutParams.MATCH_PARENT, // Width of TextView
LayoutParams.WRAP_CONTENT);
tv.setLayoutParams(lp);
tv.setTextColor(Color.RED);
ab.setCustomView(tv);
有关更多信息,请检查此链接:
http://android--code.blogspot.in/2015/09/android-how-to-change-actionbar-title_21.html
更改操作栏名称的最佳方法是转到AndroidManifest.xml并键入以下代码。
<activity android:name=".YourActivity"
android:label="NameYouWantToDisplay> </activity>
科特林
您可以通过这种方式在Kotlin中进行编程。如果“ supportActionBar”为null,则只需忽略它:
supportActionBar?.setTitle(R.string.my_text)
supportActionBar?.title = "My text"
还是这样。如果“ supportActionBar”为null,则抛出异常。
supportActionBar!!.setTitle(R.string.my_text)
supportActionBar!!.title = "My text"
对于使用AndroidX和导航架构组件的未来开发人员。
您可以使用导航图中的片段标题设置占位符,而不是使用上面的一种解决方案来设置工具栏标题(如果您想在后退堆栈更改中对其进行动态设置会很麻烦),可以在导航图中为该片段的标题设置一个占位符:
<fragment
android:id="@+id/some_fragment"
android:name="package.SomeFragment"
android:label="Hello {placeholder}"
tools:layout="@layout/fragment_some">
<argument
android:name="placeholder"
app:argType="string" />
</fragment>
必须使用FragmentDirections
(通过操作方法)提供占位符值。
然后将其替换为标题,并显示为Hello World
(when placeholder = "World"
)。