0

这是我的清单:

    <activity android:name=".plug.imp.NewActivity"
        android:windowSoftInputMode="stateHidden|adjustResize"
        android:configChanges="orientation|keyboardHidden"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.SYNC" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        <intent-filter android:icon="@drawable/label_icon">
            <action android:name="android.intent.action.INSERT" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

在这里,我设置了可绘制图标。

有没有办法在活动本身中设置它并将其从清单中删除?

谢谢你。

4

1 回答 1

0

尝试类似:

protected void onCreate(Bundle savedInstanceState) {
.....
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

    //setContentView(R.layout.main);

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.window_title);
 ....

}

window_title.xml

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/header" 
    android:src="@drawable/ico_title"
    android:layout_gravity="left"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content">
 </ImageView>

 </LinearLayout>

这是活动标题的图标而不是应用程序图标。

于 2012-08-16T14:05:55.927 回答