使用RECEIVERS更改日期后,我在模拟器中没有任何结果

时间:2012-11-28 06:33:27

标签: android android-emulator

我有这个.xml文件....来展示我的整个代码

<receiver android:name=".broad_2">
    <intent-filter>
        <action android:name="android.intent.action.DATE_CHANGED"></action>
    </intent-filter>
</receiver>



<activity
    android:name=".the_rock_iss"
    android:label="time_change_hua" >
    <intent-filter>
        <action android:name="android.intent.action.HO_HO_HO" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

&安培;我已经使用此接收器在设备中找到我的日期已更改

public void onReceive(Context context, Intent intent) 
{
    if(intent.getAction().equals(Intent.ACTION_DATE_CHANGED))
    {
        Intent i = new Intent();
        i.setClassName("com.example.time_change_ho_tho_activity_start_ho", "com.example.time_change_ho_tho_activity_start_ho.the_rock_iss");
        i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(i);       

    }
}

&安培;从这个接收器,我想打开我的活动。 这是....更改日期后不会在模拟器中显示!

public void onCreate ( Bundle bun )
{
    super.onCreate(bun);
    setContentView(R.layout.activity_main);
}

&安培;为此,我有这个.xml文件,以呈现用户界面。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

我认为你什么也得不到,因为你只会在日期变化的确切时刻触发你的意图。根据我的问题,您正在设置模拟器,然后使用不同的日期重新运行它。我想如果你把它放在手机上过夜,那么你的onRecieve()就会被触发。