我对我的工作做了一个习惯性的标题。 然而,当第一批装载时,在我的案文出现之前,用名称在标题栏中。 我如何阻止这种情况发生?
我在此主要活动中将我的习惯名称限定如下:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitle);
我的标题是xml,我写了我的文字:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myTitle"
android:text="my text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:textAppearance="?android:attr/textAppearance"
/>
我的称呼背景是 flash,只是案文。
感谢。