1b9cf6fbf9b2d9b027fc355a9a178d43
48f04fb6ce9cc8432fb9fe6c06a81e97
48f04fb6ce9cc8432fb9fe6c06a81e97
Confused about what exactly is changing for background services? We were too. Hopefully this will help clear up some of your concerns and help their heads around the changes required for background processing with Android O. For this post, we are going to focus solely on the background service execution limits. There are also other … [Read more…]
The Facebook API lets you post to pages you administrate. In the article below I’m going to explain how I did this, using version 5 of the SDK for PHP. The brief was to write a script which automatically posted any newly added WordPress custom posts to my clients company Facebook page. So here’s how it went: 1. … [Read more…]
In Android we know that we cannot just pass objects to activities. The objects must be either implements Serializable or Parcelable interface to do this. Serializable Serializable is a standard Java interface. You can just implement Serializable interface and add override methods.The problem with this approach is that reflection is used and it is a … [Read more…]
Google provides an easy to use library that is able to handle the payment and querying tasks and shields away lots of the complexity behind it. In this article I present how I implemented the In-App billing functionality for my Live Wallpaper and how I solved the problems that I faced. To be able to … [Read more…]
Pixel Densities Android icons require five separate sizes for different screen pixel densities. Icons for lower resolution are created automatically from the baseline. Launcher icons Action bar, Dialog & Tab icons These icons are used in the action bar menu. The first number is the size of the icon area, and the second is file … [Read more…]
In this tip i show you how we can open android play store app from webview. Open Play Store App from WebView Android .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
String surl = obj.getString("URL"); WebView webView = (new WebView(this)); webView.getSettings().setJavaScriptEnabled(true); webView.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { Log.e("here", "++++++++++++++" + url); if (Uri.parse(url).getScheme().equals("market")) { try { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url))); return true; } catch (ActivityNotFoundException e) { // Google Play app is not installed, you may want to open the app store link return false; } } return false; } }); webView.loadUrl(surl); |
Download & Install the JSON API Plugin The plugin is available at the WordPress website: http://wordpress.org/extend/plugins/json-api/ Download and install from the WordPress Admin interface. Configure the Plugin The plugin features three main functionality: Core: Basic methods for pulling standard post/category/tag/etc. data. Posts: Provides additional functionality with regard to posts, including post creation. Respond: Provides comment … [Read more…]
On your device: Go to settings/ developer settings/ allow USB debug mode If ‘allow USB debug mode’ option is disabled. Then you might have the device currently connected to your PC. Disconnect the device and the option should now be available