所有活动中使用的代码是:
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitle);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
mytitle xml 是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFF0" >
<ImageView
android:id="@+id/mytitle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/header_bloodbank2" />
</LinearLayout>
我的应用程序中的标题不太适合其尺寸。我对宽度和高度属性都使用了“fill_parent”。仍然没有帮助。标头没有完全换行。背后的原因可能是什么?帮帮我!还附上截图!