此应用已在ViewPager中的片段之间的通信中禁用

时间:2017-08-30 14:36:23

标签: android android-fragments android-viewpager

我尝试过ViewPager中的片段之间的通信和应用程序成功运行的示例,这是“link”链接 但是,当我更改此应用程序的主题时,此问题显示(问题“此应用程序已被禁用”)我该怎么办? 这是我的Android Manifest:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="androidviewpager.exercise.com.androidviewpager"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="11" />
    <application
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name">
        <activity
            android:name=".AndroidViewPager"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

注意: 我的意思是改变主题添加这个主题:

<Style name = "AppColor" parent = "Theme.AppCompat.Light.DarkActionBar">
         <! - Customize your theme here. ->
         <Item name = "colorPrimary"> @ color / colorPrimary </ item>
         <Item name = "colorPrimaryDark"> @ color / colorPrimaryDark </ item>
         <Item name = "colorAccent"> @ color / colorAccent </ item>
     </ Style>

通过Android Manifest应用程序告诉“此应用已被停用”,您可以通过顶部的链接&gt;看到申请表。 请帮帮我!

0 个答案:

没有答案