AndroidManifest.xml 1.03 KB
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.cnlive.core.imageload">

    <application>
        <activity
        android:name=".preview.PreviewImageViewActivity"
        android:configChanges="keyboardHidden|screenSize|smallestScreenSize|screenLayout|orientation"
        android:launchMode="singleTop"
        android:theme="@style/Theme.AppCompat.NoActionBar"/>
    <activity
        android:name=".preview.DataProcessingActivity"
        android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
        android:launchMode="singleTop"
        android:theme="@style/ProcessHtmlDialogActivityTheme">
        <intent-filter>
            <action android:name="com.cnlive.strike.moudle.preview.ui.DataProcessingActivity" />
            <category android:name="android.intent.category.DEFAULT" />
            <!-- 文字类型 -->
            <data android:mimeType="text/plain" />
        </intent-filter>
    </activity>
    </application>

</manifest>