|
我用一个自定义图片title使用TabActivity,当调用
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
R.layout.my_custom_title);
if (resId > 0)
{
ImageView im = (ImageView) findViewById(R.id.title_bar);
im.setImageResource(resId);
}
[/code]
"im"是null.请问哪里出错了。
这是 my_custom_title.xml
<?xml version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
androidrientation="vertical">
<ImageView
android:src="@drawable/launch"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:id="@+id/title_bar"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
</LinearLayout>
[/code] |
|