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