繁体   English   中英

从通知中获取URL并加载到Fragment的webview中的最佳方法是什么?

[英]Best method to get url from notification and load into Fragment's webview?

所以基本上我只是Android的新手,我正在制作一个应用程序,它从服务器发送用php发送的实时通知。

现在我想要用户点击的通知在我的网页浏览中打开一个网页。 它是一个基于Web的应用程序。

我使用3个标签在3个fragent之间切换。 每个片段都有不同的webview。

现在这是我的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);      

    }

}

主要活动包含具有所有不同webview的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? ,用通常的代码用PHP发送GCM推送。

应该是intent.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);
        }
    }
}
@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);
}

在此代码中,您只从通知有效负载中获取一个值 - price键的值。

您没有包含服务器代码,因此我不知道您是否发送带有通知的URL。 如果这样做,您应该从onMessage方法中的intent获取其值,并将其传递给打开Web视图的代码。 如果不这样做,则应更改服务器代码以将URL包含在通知有效内容中。

编辑:

要将URL传递给您的片段:

  1. onMessage()中的intent的额外内容中获取URL。

  2. 将其传递给generateNotification

  3. 添加URL作为在点击notificationIntent.putExtra ("url",url)时启动活动的意图的额外内容: notificationIntent.putExtra ("url",url)

  4. 在片段中,在初始化Web视图的代码中,从启动包含片段的活动的intent的额外内容中获取URL( getActivity().getIntent().getExtras().getString("url" )。

EDIT2:

  1. 您应该在onActivityCreated()加载Web视图,而不是在onCreateView()加载。 在创建活动之前调用onCreateView() ,因此getActivity()将返回null。

  2. 不要按原样使用该代码: String test = (getActivity().getIntent().getExtras().getString("url")); 确保getActivity()不返回null。 我相信当getActivity()不为null时,您可以假设getIntent()getExtras()不会返回null,但检查更安全。 如果未从通知中打开活动,则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); 

如果此类活动已存在(例如,如果应用程序已在运行),通知似乎不会打开新活动。 在这种情况下,将不会调用onCreateView()onActivityCreated()片段代码,并且不会加载URL。 您应该更改标志以便始终创建新活动,或者您应该将加载Web视图的逻辑作为通知的结果放在其他位置 - 可能在onResume()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM