Sunday, October 21, 2012

communication between android widget and application

Widget is a convienent feature in android that gives users quick access to frequently used application functions. A example is the power control widget. It helps us quickly toggling accessories such as WIFI, GPS power to conserve battery, without tedious operations.
android power control widget
When we plan to provide widget in our own application, an important thing to think about is the communication model between the widget and application. In a simiplified manner, the commucation model is shown below.
communication model diagram
The widget is shown on home screen(which is a AppWidgetHost), and user can interact(e.g., touch) with the widget. The result of the interaction is either showing an activity to the user to display more information, or controlling the state of a background service. Meanwhile, the background service may proactively update the widget to inform user current state. The communication model is bidirectional.

Launch activity from widget

To launch an activity from widget, we can use RemoteViews's setOnClickPendingIntent method to set a intent for the target button. Once the button is clicked, the intent will be sent to start desired activity. The snippet below shows how to do this in AppWidgetProvider.
 1 import android.app.PendingIntent;
 2 
 3 import android.appwidget.AppWidgetManager;
 4 import android.appwidget.AppWidgetProvider;
 5 
 6 import android.content.Context;
 7 import android.content.Intent;
 8 
 9 import android.widget.RemoteViews;
10 
11 public class GestureAppWidgetProvider extends AppWidgetProvider {
12 
13         public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
14             final int N = appWidgetIds.length;
15 
16             // Perform this loop procedure for each App Widget that belongs to this provider
17             for (int i=0; i<N; i++) {
18                 int appWidgetId = appWidgetIds[i];
19 
20                 // Create an Intent to launch Activity
21                 Intent intent = new Intent(context, MainActivity.class);
22                 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
23 
24                 // Get the layout for the App Widget and attach an on-click listener
25                 // to the button
26                 RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.appwidget);
27                 views.setTextColor(R.id.startRecord, Color.GREEN);
28                 views.setOnClickPendingIntent(R.id.startRecord, pendingIntent);
29 
30                 // Tell the AppWidgetManager to perform an update on the current app widget
31                 appWidgetManager.updateAppWidget(appWidgetId, views);
32             }
33         }
34 }

Send message to service from widget

The skeleton of code to send message to a service is pretty much the same as the snippet above. The change we need to make is substitute PendingIntent.getActivity with PendingIntent.getBroadCast. The result is once we clicked the button, a broadcast Intent will be sent, and our AppWidgetProvider(which is a subclass of BroadcastReceiver) will get this intent. Thie AppWidgetProvider runs in our application's process, so it can send the message to our service with StartService.
 1 public class WeatherWidgetProvider extends AppWidgetProvider {
 2     public static String REFRESH_ACTION = "com.example.android.weatherlistwidget.REFRESH";
 3 
 4     @Override
 5     public void onReceive(Context ctx, Intent intent) {
 6         final String action = intent.getAction();
 7         if (action.equals(REFRESH_ACTION)) {
 8             // send message to background service via startService here
 9             // ..............
10         }
11         super.onReceive(ctx, intent);
12     }
13 
14     @Override
15     public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
16         for (int i = 0; i < appWidgetIds.length; ++i) {
17             final RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
18             rv.setRemoteAdapter(appWidgetIds[i], R.id.weather_list, intent);
19 
20             // Set the empty view to be displayed if the collection is empty.  It must be a sibling
21             // view of the collection view.
22             rv.setEmptyView(R.id.weather_list, R.id.empty_view);
23 
24             // Bind the click intent for the refresh button on the widget
25             final Intent refreshIntent = new Intent(context, WeatherWidgetProvider.class);
26             refreshIntent.setAction(WeatherWidgetProvider.REFRESH_ACTION);
27             final PendingIntent refreshPendingIntent = PendingIntent.getBroadcast(context, 0,
28                     refreshIntent, PendingIntent.FLAG_UPDATE_CURRENT);
29             rv.setOnClickPendingIntent(R.id.refresh, refreshPendingIntent);
30 
31             appWidgetManager.updateAppWidget(appWidgetIds[i], rv);
32         }
33         super.onUpdate(context, appWidgetManager, appWidgetIds);
34     }
35 }

Update widget from service

To update a widget from service, we can send a broadcast message from the background service to AppWidgetProvider. Once the AppWidgetProvider receives the message, it tries to fetch current state and calls notifyAppWidgetViewDataChanged function to refresh the widget.
public void onReceive(Context ctx, Intent intent) {
    final String action = intent.getAction();
    if (action.equals(SHOW_NEW_DATA_ACTION)) {
        final AppWidgetManager mgr = AppWidgetManager.getInstance(context);
        final ComponentName cn = new ComponentName(context, WeatherWidgetProvider.class);
        mgr.notifyAppWidgetViewDataChanged(mgr.getAppWidgetIds(cn), R.id.weather_list);
    }
    super.onReceive(ctx, intent);
}

Reference:

android WeatherListWidget sample
Introducing home screen widgets and the AppWidget framework
android appwidget source code
android appwidget service source code

173 comments:

  1. in sending message, how to send broadcast message in other class the onreceive is on the fragment class is this possible ?

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. Very informative ..i suggest this blog to my friends..Thank you for sharingAndroid Training

    ReplyDelete
  4. Inspiring writings and I greatly admired what you have to say , I hope you continue to provide new ideas for us all and greetings success always for you..Keep update more information..

    rpa Training in Chennai

    rpa Training in bangalore

    rpa Training in pune

    blueprism Training in Chennai

    blueprism Training in bangalore

    blueprism Training in pune

    rpa online training

    ReplyDelete
  5. The knowledge of technology you have been sharing thorough this post is very much helpful to develop new idea. here by i also want to share this.
    Click here:
    angularjs training in sholinganallur
    Click here:
    angularjs training in btm

    ReplyDelete
  6. Thanks for posting this info. I just want to let you know that I just check out your site and I find it very interesting and informative. I can't wait to read lots of your posts
    java training in chennai | java training in bangalore

    java online training | java training in pune

    java training in chennai | java training in bangalore

    ReplyDelete
  7. It is very useful to me. Keep sharing this kind of useful information.

    IoT Certification | Internet of Things Training in Chennai

    ReplyDelete
  8. I am so proud of you and your efforts and work make me realize that anything can be done with patience and sincerity. Well, I am here to say that your work has inspired me without a doubt.
    python training in chennai
    python training in Bangalore

    ReplyDelete
  9. Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.
    Blueprism training in btm

    Blueprism online training

    ReplyDelete
  10. This is a terrific article, and that I would really like additional info if you have got any. I’m fascinated with this subject and your post has been one among the simplest I actually have read.

    angularjs Training in bangalore

    angularjs Training in btm

    angularjs Training in electronic-city

    angularjs online Training

    angularjs Training in marathahalli

    ReplyDelete
  11. I am really happy with your blog because your article is very unique and powerful for new reader.
    Click here:
    selenium training in chennai
    selenium training in bangalore
    selenium training in Pune
    selenium training in pune
    Selenium Online Training

    https://rpeszek.blogspot.com/2014/10/i-dont-like-hibernategrails-part-11_31.html

    ReplyDelete
  12. This is really impressive post, I am inspired with your post, do post more blogs like this, I am waiting for your blogs.
    Regards,
    Devops Training in Chennai | Devops Certification in Chennai

    ReplyDelete
  13. Awesome blog if our training additional way as an SQL and PL/SQL trained as individual, you will be able to understand other applications more quickly and continue to build your skill set which will assist you in getting hi-tech industry jobs as possible in future courese of action
    Devops Training in Chennai | Devops Training Institute in Chennai

    ReplyDelete
  14. We are a group of volunteers and starting a new initiative in a community. Your blog provided us valuable information to work on.You have done a marvellous job!
    Microsoft Azure online training
    Selenium online training
    Java online training
    Python online training
    uipath online training

    ReplyDelete
  15. Fuck you dickhead

    ReplyDelete
  16. THis post is awesome. You have really made my day. inspirational gym quotes

    ReplyDelete
  17. Nice information, valuable and excellent article, lots of great information, thanks for sharing with peoples.


    ExcelR Data Science Course in Bangalore

    ReplyDelete
  18. Glad to chat your blog, I seem to be forward to more reliable articles and I think we all wish to thank so many good articles, blog to share with us.




    BIG DATA COURSE MALAYSIA

    ReplyDelete
  19. Thanks for the nice blog. It was very useful for me. I'm happy I found this blog. Thank you for sharing with us,I too always learn something new from your post.
    machine learning course malaysia

    ReplyDelete
  20. It should be noted that whilst ordering papers for sale at paper writing service, you can get unkind attitude. In case you feel that the bureau is trying to cheat you, don't buy term paper from it. Love it.

    ReplyDelete

  21. Just seen your Article, it amazed me and surpised me with god thoughts that eveyone will benefit from it. It is really a very informative post for all those budding entreprenuers planning to take advantage of post for business expansions. You always share such a wonderful articlewhich helps us to gain knowledge .Thanks for sharing such a wonderful article, It will be deinitely helpful and fruitful article.
    Thanks
    DedicatedHosting4u.com

    ReplyDelete
  22. It has fully emerged to crown Singapore's southern shores and undoubtedly placed her on the global map of residential landmarks. I still scored the more points than I ever have in a season for GS. I think you would be hard pressed to find somebody with the same consistency I have had over the years so I am happy with that.
    big data course malaysia

    ReplyDelete
  23. Coin master is one of the famous and grossing games right now. you can spin the wheel and believe in fortune to get a lot of Spins. But you end up getting small amounts of spins. For those who are searching for Coin Master unlimited spins, this article is very useful to them. https://meditips.in/coin-master-free-spins/

    ReplyDelete
  24. Poweramp is a powerful music player for Android. Using Poweramp Full Version Unlocker [Cracker] For Android, you can access the extra features of the Poweramp music player. https://www.hightechpicker.com/2019/08/poweramp-full-version-unlocker.html

    ReplyDelete
  25. In our culture, the practice of treatment through various burn fat herbs and
    spices is widely prevalent. This is mainly due to the reason that different burn fat herbs grow in great abundance here. In addition to the
    treatment of various ailments these herbs prove beneficial in Healthy Ways To Lose Weight
    , especially for those who want to burn fat herbs

    we live in a world where diseases and their prevalence has gone off
    the charts. With the ever-growing incidences of illnesses and
    sufferings, one finds themselves caught up in a loop of medications
    and doctors’ visits. We, at https://goodbyedoctor.com/ , aim to find solutions for
    all your health-related problems in the most natural and harmless ways.
    We’re a website dedicated to providing you with the best of home
    remedies, organic solutions, and show you a path towards a healthy,
    happy life. visit https://goodbyedoctor.com/
    this site daily to know more about health tips and beauty tips.

    ReplyDelete
  26. Nice article
    Thanks for sharing the information
    Please visit the leadmirror to know your SEO position on the google.

    ReplyDelete
  27. amazing post written ... It shows your effort and dedication. Thanks for share such a nice post. Please check whatsapp status in hindi and best wifi names

    ReplyDelete
  28. I found your article on Google when I was surfing, it is written very nicely and is optimized .Thank you I visit your website regularly.
    download ncert books

    ReplyDelete
  29. Very good post, keep sending us such informative articles I visit your website on a regular basis.
    affairscloud current affairs quiz

    ReplyDelete
  30. This is really an awesome post, thanks for it. Keep adding more information to this.selenium training in bangalore

    ReplyDelete
  31. Nice information, you write very nice articles, I visit your website for regular updates.
    haircut for girls

    ReplyDelete
  32. I Love your website i am ready your all website article 먹튀검증

    ReplyDelete
  33. I found your article on Google when I was surfing, it is written very nicely and is optimized .Thank you I visit your website regularly.
    software free download full version

    ReplyDelete
  34. PhenQ Reviews - Is PhenQ a new Scam?
    Does it really work? Read this honest review and make a wise purchase decision. PhenQ ingredients are natural and ...
    It has been deemed fit for use in the market. It is not found to be a Scam weight loss pill.
    By far it is the safest and most effective weight loss pill available in the market today.

    Phenq reviews ..This is a powerful slimming formula made by combining the multiple weight loss
    benefits of various PhenQ ingredients. All these are conveniently contained in one pill. It helps you get the kind of body that you need. The ingredients of
    the pill are from natural sources so you don’t have to worry much about the side effects that come with other types of dieting pills.Is PhenQ safe ? yes this is completly safe.
    Where to buy PhenQ ? you can order online. you don`t know Where to order phenq check this site .

    visit https://mpho.org/ this site to know more about PhenQ Reviews.

    ReplyDelete
  35. Really i appreciate the effort you made to share the knowledge. The topic here i found was really effective...

    Learn Best PEGA Training in Bangalore from Experts. Softgen Infotech offers the Best PegaTraining in Bangalore.100% Placement Assistance, Live Classroom Sessions, Only Technical Profiles, 24x7 Lab Infrastructure Support.

    ReplyDelete
  36. The article was up to the point and described the information very effectively. Thanks to blog author for wonderful and informative post




    start learning digital marketing

    ReplyDelete
  37. I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work.
    ai training in bangalore
    Machine Learning Training in Bangalore

    ReplyDelete

  38. Truly, this article is really one of the very best in the history of articles. I am a antique ’Article’ collector and I sometimes read some new articles if I find them interesting. And I found this one pretty fascinating and it should go into my collection. Very good work!
    data science training in bangalore
    data science interview questions

    ReplyDelete
  39. http://greenhomesgroup.com/- A 16+ year old Creative Media
    Solutions company.

    Engaged in Practical Creativity Advertising agencies in chennai for its clients from India,Europe and the US.
    A proven portfolio of work across diverseTop Graphic design studios in chennai media for its clients from different domains.
    An intricate3D augmented reality fusion of insightful strategy, cutting-edgeBranding agency in chennai
    ideas, and intelligent media integration is what we callCorporate Film Makers in chennai practical creativity.

    Check Our Website http://greenhomesgroup.com/.

    ReplyDelete
  40. Thisblogtruly has all the info I wanted concerning this subject and didn’t know who to ask.

    ReplyDelete
  41. Gold and silver for life reviews.
    Thousands Across The Globe Using Mineshaft Bhindari gold and silver for life Training To Protect Their Wealth And Creating A Passive Income of 12% To 26.4% Per Year….


    Gold and silver for life reviews- How It Works?

    Minesh Bhindi created Gold and silver for life reviews because, after a long career in helping people grow their wealth through investment,
    he noticed something that he felt should benefit everyone. Since 2010, Gold and Silver for life has been helping people grow their wealth securely through strategic Investing in precious metals , gold and silver.
    As proud founder of Reverent Capital, a secure investment advisory firm, he consults with high net worth individuals from around the globe on the importance of secure
    investments in gold and silver

    Learn How to invest in gold from here kingsslyn.com now.

    ReplyDelete
  42. Whatever we gathered information from the blogs, we should implement that in practically then only we can understand that exact thing clearly cyber security training courses , but it’s no need to do it, because you have explained the concepts very well. It was crystal clear, keep sharing..

    ReplyDelete
  43. Hey,

    Uselessly I am not Commenting on to the post But when I Saw your post It was Amazing. It any News you want to know National New Today

    The TrendyFeed
    Latest New Today
    Technology New Today

    Thanks,
    The TrendyFeed

    ReplyDelete
  44. Thank you for sharing valuable information. Thanks for providing a great informatic blog, really nice required information & the things I never imagined. Thanks you once again Marvel Future Fight Mod Apk

    ReplyDelete
  45. HI
    Are you Looking For Digital Marketing In Noida. We have Team of expert for Digital marketing internship with 100% placementBest Digital marketing Agnecy In Noida

    ReplyDelete
  46. Nice and Great WEbsite thank you for share this amazing website 구글상위대행

    ReplyDelete
  47. Wow What a Nice and Great Article, Thank You So Much for Giving Us Such a Nice & Helpful Information, please keep writing and publishing these types of helpful articles, I visit your website regularly.
    bharatpur pin code

    ReplyDelete
  48. good Congratulations guys, quality information you have given!!!..Its really useful blog. Thanks for sharing this useful 구글상위노출

    ReplyDelete
  49. You might comment on the order system of the blog. You should chat it's splendid. Your blog audit would swell up your visitors. I was very pleased to find this site.I wanted to thank you for this great read!!
    machine learning course in pune

    ReplyDelete
  50. crowdsourcehttp://www.incruiter.com recruitment agency.

    We ’incruiter’ provide a uniquerecruitment agencies platform to various committed professionals
    placement consultancyacross the globe to use their skills and expertise to join as a recruiter and
    interviewer to empower the industry with talented human resources.Searching for the right candidate is never easy.
    job consultancy We use crowdsource recruitment to find right talent pool at much faster pace.
    Our candidate search follows application of a rigorous methodology, and a comprehensive screening to find an individual
    whorecruitment consultants is not only skilled but is also the right culture fit for your organization.
    Our interviewers are best in the industry,staffing agencies being experts from various verticals to judge right
    candidate for the job. They interview candidates taking into account primarily defined job specification of our clients and targeting
    them for needs of the organization.Thinking about payment?placement agencies Don’t worry, you pay when you hire.
    Whether you are a startup or an established enterprise, join our 10x faster recruitment process that reduces your hiring process by 50% and give you
    manpower consultancyefficient results.

    check our website:http://www.incruiter.com.

    ReplyDelete
  51. azure course Thanks for sharing such a great information..Its really nice and informative..

    ReplyDelete
  52. Effective blog with a lot of information. I just Shared you the link below for Courses .They really provide good level of training and Placement,I just Had Data Science Classes in this institute , Just Check This Link You can get it more information about the Data Science course.


    Java training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery

    ReplyDelete
  53. Very good post, keep sending us such informative articles I visit your website on a regular basis.
    rakesh yadav advance maths pdf

    ReplyDelete
  54. SSC Result 2020 Published Date & Time by ssc result
    ssc result 2020
    Education Board of Bangladesh.
    Many of You Search For SSC Result Kobe Dibe on Internet
    as Well as Facebook. The results of Secondary School Certificate
    (SSC)—and its equivalent examinations—for 2020 have been published.
    SSC & Dakhil Result 2020 Published Date is Very Important For T
    he Students Who Attend The SSC Exam 2020.

    ReplyDelete
  55. wow, great, I was wondering how to cure acne naturally. and found your site by google, learned a lot, now i’m a bit clear. I’ve bookmark your site and also add rss. keep us updated.
    data science certification

    ReplyDelete
  56. Good information. Thank you for providing information. Study here how you can get rich. 먹튀

    ReplyDelete
  57. Wow What a Nice and Great Article, Thank You So Much for Giving Us Such a Nice & Helpful Information, please keep writing and publishing these types of helpful articles, I visit your website regularly.
    rakesh yadav maths

    ReplyDelete
  58. You rock particularly for the high caliber and results-arranged offer assistance. I won't reconsider to embrace your blog entry to anyone who needs and needs bolster about this region.
    Software Testing Training in Chennai | Software Testing Training in Anna Nagar | Software Testing Training in OMR | Software Testing Training in Porur | Software Testing Training in Tambaram | Software Testing Training in Velachery

    ReplyDelete
  59. I found your article on Google when I was surfing, it is written very nicely and is optimized.Thank you I visit your website regularly.
    best beaches in goa

    ReplyDelete
  60. This article is packed full of constructive information. The valuable points made here are apparent, brief, clear and poignant.
    SAP training in Mumbai
    Best SAP training in Mumbai
    SAP training institute Mumbai

    ReplyDelete
  61. Thank you for such a nice article keep posting, I am a RegularVisitor of your website.
    connaught place

    ReplyDelete
  62. I will be interested in more similar topics. i see you got really very useful topics , i will be always checking your blog thanks
    data scientist course malaysia

    ReplyDelete

  63. We'll start with a favorite of the upcoming season, the popular pixie haircut. Stylish Pixie. It suits many women. Young girls and ladies over 40 choose it. The secret ...
    Haircut Names With Pictures For Ladies
    thestyledare.com/

    ReplyDelete
  64. Such a very useful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article.

    SAP Online Training

    SAP Classes Online

    SAP Training Online

    Online SAP Course

    SAP Course Online

    ReplyDelete
  65. The article is very interesting and very understood to be read, may be useful for the people. I wanted to thank you for this great read!! I definitely enjoyed every little bit of it. I have to bookmarked to check out new stuff on your post. Thanks for sharing the information keep updating, looking forward for more posts..



    Data Science Training In Chennai | Certification | Data Science Courses in Chennai | Data Science Training In Bangalore | Certification | Data Science Courses in Bangalore | Data Science Training In Hyderabad | Certification | Data Science Courses in hyderabad | Data Science Training In Coimbatore | Certification | Data Science Courses in Coimbatore | Data Science Training | Certification | Data Science Online Training Course

    ReplyDelete
  66. Calculate your EMI for personal loan, home loan, car loan, student loan, business loan in India. Check EMI eligibilty,
    interest rates, application process, loan.
    EMI Calculator calculate EMI for home loan, car loan, personal loan , student loan in India .

    visit https://emi-calculators.com/ here for more information.

    ReplyDelete
  67. ترفند برد و آموزش بازی انفجار آنلاین و شرطی، نیترو بهترین و پرمخاطب ‌ترین سایت انفجار ایرانی، نحوه برد و واقعیت ربات ها و هک بازی انجار در
    اینجا بخوانید
    کازینو آنلاین نیترو
    بازی حکم آنلاین نیترو
    کازینو آنلاین
    بازی حکم آنلاین
    Introducing the Nitro Blast game site
    معرفی سایت بازی انفجار نیترو
    همان طور که می دانید بازی های کازینو های امروزه از محبوبیت ویژه ای برخودارند که این محبوبیت را مدیون سایت های شرط می باشند. با گسترش اینترنت این بازی ها محدودیت های مکانی و زمانی را پشت سرگذاشته و به صورت آنلاین درآمده اند.
    بازی انفجار نیترو
    بازی انفجار
    یکی از محبوب ترین بازی های کازینو، بازی انفجار می باشد که ساخته سایت های شرط بندی می باشد و امروزه از طرفداران ویژه ای برخودار است. با گسترش اینترنت سایت های شرط بندی مختلفی ایجاد شده اند که این بازی را به صورت آنلاین ساپورت می کنند. یکی از این سایت ها، سایت معتبر نیترو می باشد. در این مقاله قصد داریم به معرفی
    سایت بازی انفجار نیترو بپردازیم.
    سایت پیش بینی فوتبال نیتر
    سایت پیش بینی فوتبال
    بازی رولت نیترو
    Visit https://www.wmsociety.org/
    here for more information

    ReplyDelete
  68. Truly, this article is really one of the very best in the history of articles. I am a antique ’Article’ collector and I sometimes read some new articles if I find them interesting. And I found this one pretty fascinating and it should go into my collection. Very good work!
    AWS training in Chennai

    AWS Online Training in Chennai

    AWS training in Bangalore

    AWS training in Hyderabad

    AWS training in Coimbatore

    AWS training

    ReplyDelete
  69. I was just browsing through the internet looking for some information and came across your blog. I am impressed by the information that you have on this blog. It shows how well you understand this subject. Bookmarked this page, will come back for more.
    data science courses

    ReplyDelete
  70. I see some amazingly important and kept up to length of your strength searching for in your on the site
    data science course in noida

    ReplyDelete
  71. Generic Latisse : Eyelashes drops 3ml with Bimatoprost 3%

    Natural Ways to Encourage eyelashes growth , iBeauty Care offers a wide variety of natural products for skin care

    iBeauty Care offers a wide variety of natural products for skin care, eyelashes growth, acne and many other health problems. All products are with clinically proven effects and great therapeutic results.
    Visit https://www.ibeauty care.com/home/21-generic-latisse.html here to buy this ar low cost.
    or visit The home page https://www.ibeauty-care.com/.

    ReplyDelete
  72. Very interesting to read this article.I would like to thank you for the efforts. I also offer Data Scientist Courses data scientist courses

    ReplyDelete
  73. I think this is an informative post and it is very beneficial and knowledgeable. Therefore, I would like to thank you for the endeavors that you have made in writing this article. All the content is absolutely well-researched. Thanks. battery reconditioning scam

    ReplyDelete
  74. This is such an awesome asset, to the point that you are giving and you give it away for nothing.our article has piqued a lot of positive interest. I can see why since you have done such a good job of making it interesting. yoga burn

    ReplyDelete
  75. I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work.
    DevOps Training in Chennai

    DevOps Course in Chennai


    ReplyDelete

  76. I see the greatest contents on your blog and I extremely love reading them.

    Data Science Training in Hyderabad

    ReplyDelete

  77. Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.

    CCIE Training in Bangalore
    Best CCIE Training Institutes in Bangalore

    ReplyDelete

  78. Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.

    CCIE Training in Bangalore
    Best CCIE Training Institutes in Bangalore

    ReplyDelete
  79. It's Very useful and the topic is clear understanding.  Keep sharing.   Primavera course online   Primavera p6 training online   

    ReplyDelete

  80. I respect this article for the very much investigated substance and magnificent wording. I got so included in this material that I couldn't quit perusing. I am awed with your work and aptitude. Much obliged to you to such an extent.homepage

    ReplyDelete
  81. Really great Post, Thanks for the nice & valuable information. Here I have a suggestion that if your looking for the Best Digital Marketing Training in Gurgaon Then Join the 99 Digital Academy. 99 Digital Academy offers an affordable Digital Marketing Training Course in Gurgaon. Enroll Today.

    ReplyDelete
  82. How to use function key without pressing Fn Key The post was originally published on Loudpedia . You can disable the Fn button and use function keys without pressing the Fn key again and again.

    ReplyDelete
  83. Thanks for the Valuable information.Really useful information. Thank you so much for sharing. It will help everyone.

    SASVBA is recognized as the best machine learning training in Delhi. Whether you are a project manager, college student, or IT student, Professionals are the best machine learning institute in Delhi, providing the best learning environment, experienced machine learning instructors, and flexible training programs for the entire module.

    FOR ORE INFO:

    ReplyDelete
  84. Nice blog post,
    Digital Marketing Course with Internshipthe demand for digital marketing and the job openings that are expected to open in the coming days in mind, we make sure that our Digital Marketing course comes with an internship that focuses on making you work on real-time live projects.

    ReplyDelete
  85. i am glad to discover this page

    ReplyDelete
  86. Thanks for such a great post and the review, I am totally impressed! Keep stuff like this coming.
    Best Data Science courses in Hyderabad

    ReplyDelete
  87. It's been a pleasure to tell you about a great opportunity this lockdown . Our institution is offering CS executive classes and only for you guys there will be a free CSEET classes. So don't be late to register. For more information contact us or join our website at https://uniqueacademyforcommerce.com/

    ReplyDelete
  88. Infycle Technologies, the best software training institute in Chennai offers Big Data Hadoop training in Chennai for tech professionals and freshers. In addition to Big Data, Infycle also offers other professional courses such as Python, Oracle, Java, Power BI, Digital Marketing, Data Science, etc., which will be trained with 100% practical classes. After the completion of training, the trainees will be sent for placement interviews in the top MNC's. Call 7502633633 to get more info and a free demo. No.1 Big Data Hadoop Training in Chennai | Infycle Technologies

    ReplyDelete
  89. Shop for the latest Redmi mobiles from Helmet Don at the best prices in India. Xiaomi smartphones include Mi Series, Mi Note Series, Redmi Series, Pocophone, Mi Max Series, Mi Mix Series, and the Blackshark.
    HelmetDon
    MI
    redmi-phones


    ReplyDelete
  90. Shop Repair & Buy Mobiles Online At best prices in India only at https://rshop.in/location/karnal-sadar-bazar/

    ReplyDelete
  91. Nice post. Thank you to provide us this useful information.
    Visit us: RPA Ui Path Online Training
    Visit us: Ui Path Course Online

    ReplyDelete
  92. I think this is an informative post and it is very useful and knowledgeable. therefore, I would like to thank you for the efforts you have made in writing this article. data scientist course in surat

    ReplyDelete
  93. Your work is very good and I appreciate you and hopping for some more informative posts business analytics course in mysore

    ReplyDelete
  94. Thank you for excellent article.You made an article that is interesting.
    ai training in aurangabad

    ReplyDelete
  95. Truly, this article is really one of the very best in the history of articles. I am a antique ’Article’ collector and I sometimes read some new articles if I find them interesting. And I found this one pretty fascinating and it should go into my collection. Very good work! business analytics course in surat

    ReplyDelete
  96. It was good experience to read about dangerous punctuation. Informative for everyone looking on the subject. business analytics course in mysore

    ReplyDelete
  97. Excellent post.I want to thank you for this informative read, I really appreciate sharing this great post.Keep up your work data analytics course in kanpur

    ReplyDelete
  98. data analytics course in lucknowJune 29, 2022 at 5:28 PM


    360DigiTMG is the top-ranked and the best Data Science Course Training Institute in Hyderabad..
    data analytics course in lucknow

    ReplyDelete
  99. data science course in patnaJuly 1, 2022 at 5:54 PM

    Without data analytics, you cannot imagine data science. In this process, data is examined to transform it into a meaningful aspect.
    Without data analytics, you cannot imagine data science. In this process, data is examined to transform it into a meaningful aspect.

    ReplyDelete
  100. I think this is the best article today about future technology. Thanks for taking your own time to discuss this topic, I feel happy that my curiosity has increased to learn more about this topic.
    Food Processing Business

    ReplyDelete
  101. Fantastic article I ought to say and thanks to the info. Instruction is absolutely a sticky topic. But remains one of the top issues of the time. I love your article and look forward to more.
    Rice Milling Technology
    One to One Tuition
    Broiler Poultry Farming
    Dry Cleaning Business
    College Courses

    ReplyDelete
  102. This comment has been removed by the author.

    ReplyDelete
  103. thanks for share this amazing article
    Jewellery ERP Software Dubai
    Jewellery ERP Software Dubai

    ReplyDelete
  104. Very useful and informative.Thanks for the post.
    CCNA course in Pune

    ReplyDelete
  105. Great article! I appreciate you sharing valuable information.
    visit:
    Mulesoft Training In Hyderabad

    ReplyDelete
  106. Effective communication between an Android widget and its parent application ensures seamless interaction and data exchange, enhancing user experience and functionality and CMOLDS Dubai a website development company in dubai providing complete and authentic solutions in web and app development.

    ReplyDelete