AndroidManifest.xml 565 Bytes
Newer Older
徐健 committed
1 2 3 4 5 6 7
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.yidianling.fm">

    <application>

        <activity android:name=".FMActivity"
            android:label="电台页面"
konghaorui committed
8 9 10
            android:screenOrientation="portrait"
                android:theme="@style/platform_NoTitleTheme"
                />
徐健 committed
11 12 13 14 15 16 17 18 19 20

        <activity android:name=".FMDetailActivity"
            android:label="电台详情页面"
            android:launchMode="singleTask"
            android:screenOrientation="portrait"/>

    </application>


</manifest>