新手项目-从BroadcastReceive开始一项活动

时间:2019-06-29 17:31:10

标签: javascript android

我正在尝试构建一个简单的每日提醒应用,作为我的第一个Android 项目,我现在被困住了。几个小时的信息太多 看教程。 :)

因此,我需要一些帮助来了解后面的代码 我的想法如此,希望有人能轻松解释:)

  • 每天我想让闹钟/提醒/飞溅声响十次三秒钟 具有不同的图片和声音,具体取决于警报时间。 轻按/滑动即可在10秒前将其停止。

警报1 --- alarm1time08:10 --- alarm1pic1.jpg --- alarm1Sound1.mp3

警报2 --- alarm2time12:30 --- alarm2pic1.jpg --- alarm2Sound1.mp3

警报3 --- alarm3time18:45 --- alarm3pic1.jpg --- alarm3Sound1.mp3

那我该怎么做?

我正在使用Android Studio 2.3(以降低计算机3.x的速度...), Java和我的手机均为Lollipop 5.1 API级别22, 棉花糖6.0 API级别23

这是我的代码,实际上没有错误。

但是现在我不知道如何通过图像和声音打开活动。 在hRec中尝试时得到了红色的startActivity。

MainActivity.java

package com.hlm.myreminder;

import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;

import java.util.Calendar;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        int hHour1 = 08;
        int hMin1 = 10;

        Calendar hCal1 = Calendar.getInstance();
        hCal1.set(Calendar.HOUR_OF_DAY, hHour1);
        hCal1.set(Calendar.MINUTE, hMin1);
        hCal1.set(Calendar.SECOND, 0);

        Log.v("hLogging","cal set");

        Intent hIntent = new Intent(getApplication(),hRec.class);
        PendingIntent hPi = PendingIntent.getBroadcast(getApplicationContext(),0,hIntent,PendingIntent.FLAG_UPDATE_CURRENT);

        Log.v("hLogging","intent set");

        AlarmManager hAlMgr = (AlarmManager)getSystemService(ALARM_SERVICE);
        hAlMgr.setRepeating(AlarmManager.RTC_WAKEUP,hCal1.getTimeInMillis(),hAlMgr.INTERVAL_DAY,hPi);

        Log.v("hLogging","am set");

        // startActivity(new Intent(this, hshowreminderpic1.class)); //works
        // Log.v("hLogging","goto hshowreminderpic1 done");          //works
    }
}

hRec.java

package com.hlm.myreminder;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

public class hRec extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent hIntent) {

        Log.d("hLogging", "hRec:BroadcastReceiverAlarm");
        // show hshowreminderpic1

        /* startActivity gets RED */
        // startActivity(new Intent(this, hshowreminderpic1.class));

        // Log.v("hLogging","goto hshowreminderpic1 request");

    }

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.hlm.myreminder">

    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/h_icon72"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".hshowreminderpic1"/>
        <receiver android:name=".hRec"></receiver>
    </application>

</manifest>

2 个答案:

答案 0 :(得分:1)

由于hRec不是活动,因此您需要传递上下文以从hRec.java开始活动。 所以只需写

nil

答案 1 :(得分:0)

尝试使用此:

context.startActivity(new Intent(this, hshowreminderpic1.class));