我是安卓开发新手
我试图在我的应用程序中创建一个自定义标题栏。它在模拟器中工作。但是当我在我的设备上运行这个应用程序时......它停在那里(不加载)
自定义标题栏的xml代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView android:id="@+id/left_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:gravity="center"
android:background="@drawable/bg2"
android:text="Welcome Screen"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColorHighlight="#ffffd4"
android:textAllCaps="false"
android:typeface="serif"
android:textColor="#960000"
android:textStyle="italic" />
</RelativeLayout>
我的活动类中的代码
public void onCreate(Bundle b){
super.onCreate(b);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.welcome);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitlebar);
模拟器没有问题......它在那里工作正常,但如果有人告诉我解决方案,它不能在真实设备上工作。这是紧急的家伙......