0

我有这个 .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>
4

1 回答 1

0

我认为您一无所获,因为您只会在日期更改的确切时刻激发您的意图。根据我从您的问题中了解到的情况,您正在设置模拟器,然后以不同的日期重新运行它。我想如果你把它放在你的手机上过夜,你onRecieve()就会被触发。

于 2012-11-28T06:42:17.407 回答