3

したがって、基本的にはAndroidが初めてで、サーバーからphpで送信されるリアルタイム通知を送信するアプリケーションを作成しています。

今私は、ユーザーがクリックしたときに通知が私の webview で web ページを開くことを望んでいます。そのウェブベースのアプリ。

3 つのタブを使用して 3 つの fragents を切り替えます。各フラグメントは異なる Web ビューを取得しました。

これが私の GCMintentService.java です。

   package blah.blah;


import static blah.blah.CommonUtilities.SENDER_ID;

import static blah.blah.CommonUtilities.displayMessage;
import blah.blah.R;
import blah.blah.R.drawable;
import blah.blah.R.string;

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

import com.google.android.gcm.GCMBaseIntentService;

public class GCMIntentService extends GCMBaseIntentService {

    private static final String TAG = "GCMIntentService";

    public GCMIntentService() {
        super(SENDER_ID);
    }

    /**
     * Method called on device registered
     **/
    @Override
    protected void onRegistered(Context context, String registrationId) {
        Log.i(TAG, "Toestel geregistreerd: regId = " + registrationId);
        displayMessage(context, "Je toestel is geregistreerd");
        Log.d("NAME", NotificationMain.name);
        ServerUtilities.register(context, NotificationMain.name, NotificationMain.klas, registrationId);
    }

    /**
     * Method called on device un registred
     * */
    @Override
    protected void onUnregistered(Context context, String registrationId) {
        Log.i(TAG, "Toestel nog niet geregistreerd!");
        displayMessage(context, getString(R.string.gcm_unregistered));
        ServerUtilities.unregister(context, registrationId);
    }

    /**
     * Method called on Receiving a new message
     * */
    @Override
    protected void onMessage(Context context, Intent intent) {
        Log.i(TAG, "Ontvangen bericht");
        String message = intent.getExtras().getString("price");

        displayMessage(context, message);
        // notifies user
        generateNotification(context, message);
    }

    /**
     * Method called on receiving a deleted message
     * */
    @Override
    protected void onDeletedMessages(Context context, int total) {
        Log.i(TAG, "Received deleted messages notification");
        String message = getString(R.string.gcm_deleted, total);
        displayMessage(context, message);
        // notifies user
        generateNotification(context, message);
    }

    /**
     * Method called on Error
     * */
    @Override
    public void onError(Context context, String errorId) {
        Log.i(TAG, "Received error: " + errorId);
        displayMessage(context, getString(R.string.gcm_error, errorId));
    }

    @Override
    protected boolean onRecoverableError(Context context, String errorId) {
        // log message
        Log.i(TAG, "Received recoverable error: " + errorId);
        displayMessage(context, getString(R.string.gcm_recoverable_error,
                errorId));
        return super.onRecoverableError(context, errorId);
    }

    /**
     * Issues a notification to inform the user that server has sent a message.
     */
    private static void generateNotification(Context context, String message) {
        int icon = R.drawable.ic_launcher;
        long when = System.currentTimeMillis();
        NotificationManager notificationManager = (NotificationManager)
                context.getSystemService(Context.NOTIFICATION_SERVICE);
        Notification notification = new Notification(icon, message, when);

        String title = context.getString(R.string.app_name);

        Intent notificationIntent = new Intent(context, MyFragment.class);
        // set intent so it does not start a new activity
        notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
                Intent.FLAG_ACTIVITY_SINGLE_TOP);
        PendingIntent intent =
                PendingIntent.getActivity(context, 0, notificationIntent, 0);
        notification.setLatestEventInfo(context, title, message, intent);
        notification.flags |= Notification.FLAG_AUTO_CANCEL;

        // Play default notification sound
        notification.defaults |= Notification.DEFAULT_SOUND;

        //notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");

        // Vibrate if vibrate is enabled
        notification.defaults |= Notification.DEFAULT_VIBRATE;
        notificationManager.notify(0, notification);      

    }

}

メイン アクティビティは、すべて異なる Web ビューを持つ 3 つのフラグメントを保持します。FragmentAdapter.java で呼ばれる配列から URL を取得し、FragmentAdapter を拡張します。

完璧に動作します...ここにfragmentAdapterがあります:

    package blah.blah;

import blah.blah.MyFragment;


import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;

public class MyFragmentPagerAdapter extends FragmentPagerAdapter{


    String[] toVisit={
        "www.google.com",
        "www.stackoverlow.com",
        "www.lorumipsum.com",
        };

    final int PAGE_COUNT = 3;

    public MyFragmentPagerAdapter(FragmentManager fm) {
        super(fm);
    }
    @Override
      public Fragment getItem(int position) {
        // Here is where all the magic of the adapter happens
        // As you can see, this is really simple.
        return MyFragment.newInstance(toVisit[position]);
    }
    @Override
    public int getCount() {     
        return PAGE_COUNT;
    }
    @Override
    public CharSequence getPageTitle(int position) {        
        if(position == 0)
        {
            return "Klassen";
        }
        else if(position == 1)
        {
            return "Docenten";
        }
        else
        {
            return "Lokalen";
        }   
    }   
}

しかし、サーバーから取得した情報に応じて異なる URL をロードする方法は? 、GCMプッシュは、通常のコードでphpで送信されます。

インテントのあるものでなければなりません.PushExtra("google.com, http://google.com ") // たとえば、すべてが機能しません。私の質問が明確であることを願っています。

すべてのヘルプは高く評価されています! すべてのヒントと考えを共有してください:P.

ああ、あなたと私の MyFragment.java が役に立つなら:

    package blah.blah;


import blah.blah.R;
import blah.blah.R.id;
import blah.blah.R.layout;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.ProgressBar;


public class MyFragment extends Fragment{

    WebView browser; 
    String url;
    private Bundle webViewBundle;
    Intent extras = getActivity().getIntent();

    @Override
    public View onCreateView(LayoutInflater inflater, 
         ViewGroup container, Bundle savedInstanceState) {

        View view=inflater.inflate(
            R.layout.myfragment_layout, 
            container, 
            false);

        final ProgressBar spinner = (ProgressBar)view.findViewById(R.id.progress);

        browser=(WebView)view.findViewById(R.id.webView1);
        browser.getSettings().setJavaScriptEnabled(true);
        browser.setWebViewClient(new WebViewClient() {

            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                browser.loadUrl("file:///android_asset/geeninternet.html");

            }
            @SuppressWarnings("unused")
            public void onProgressChanged(final WebView view, final int progress)   
            {
                if(progress == 100)
                    spinner.setVisibility(View.GONE);
              }
        });

        browser.loadUrl(url); 

        // Just load whatever URL this fragment is
        // created with.
        return view;
    }
    // This is the method the pager adapter will use
    // to create a new fragment
    public static Fragment newInstance(String url)
    {
        MyFragment f=new MyFragment();
        f.url=url;
        return f;
    }
    // Met browser;
    public boolean onOptionsItemSelected(MenuItem item)
    {
        switch (item.getItemId())
        {
        case R.id.menu_refresh:
        browser.loadUrl(url);
            return true;
        default:
            return super.onOptionsItemSelected(item);
        }
    }

    /**
     * Sla webview op
     */
    @Override
    public void onPause()
    {
        super.onPause();

        webViewBundle = new Bundle();
        browser.saveState(webViewBundle);
    }

    /**
     * Herstel staat van webview
     */
    @Override
    public void onActivityCreated(Bundle savedInstanceState)
    {
        super.onActivityCreated(savedInstanceState);

        if (webViewBundle != null)
        {
            browser.restoreState(webViewBundle);
        }
    }
}
4

1 に答える 1

1
@Override
protected void onMessage(Context context, Intent intent) {
    Log.i(TAG, "Ontvangen bericht");
    String message = intent.getExtras().getString("price");

    displayMessage(context, message);
    // notifies user
    generateNotification(context, message);
}

このコードでは、通知ペイロードから 1 つの値 (priceキーの値) のみを取得します。

サーバー コードが含まれていないため、通知で URL を送信しているかどうかはわかりません。その場合はintent、メソッド内のからその値を取得しonMessage、それを Web ビューを開くコードに渡す必要があります。そうでない場合は、サーバー コードを変更して、通知ペイロードに URL を含める必要があります。

編集 :

URL をフラグメントに渡すには:

  1. のインテントのエクストラから URL を取得しますonMessage()

  2. に渡しgenerateNotificationます。

  3. 通知がタップされたときにアクティビティを開始するインテントに URL を追加しますnotificationIntent.putExtra ("url",url)

  4. フラグメントでは、Web ビューを初期化するコードで、フラグメントを含むアクティビティを開始したインテントのエクストラから URL を取得します ( getActivity().getIntent().getExtras().getString("url")。

EDIT2:

  1. onActivityCreated()ではなく、でWeb ビューをロードする必要がありますonCreateView()onCreateView()アクティビティが作成される前に呼び出されるため、getActivity()null が返されます。

  2. そのコードをそのまま使用しないでください: null を返さないString test = (getActivity().getIntent().getExtras().getString("url"));ことを確認してください。getActivity()がnullでない場合getActivity()、それを想定してnullを返さないgetIntent()と思いますがgetExtras()、確認する方が安全です。getString("url")アクティビティが通知から開かれなかった場合は null を返します。したがって、Web ビューをロードする前に値があることを確認する必要があります。

  3. 通知フラグに問題がある可能性があります:

// set intent so it does not start a new activity
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
        Intent.FLAG_ACTIVITY_SINGLE_TOP);

そのようなアクティビティが既に存在する場合 (たとえば、アプリが既に実行されている場合)、通知は新しいアクティビティを開かないようです。その場合、 と のフラグメント コードは呼び出されず、URL は読み込まonCreateView()onActivityCreated()ません。新しいアクティビティが常に作成されるようにフラグを変更するか、通知の結果として Web ビューをロードするロジックを別の場所 (おそらくonResume().

于 2013-05-17T19:28:48.317 に答える