Posts

Showing posts from May, 2019

How to report invalid clicks to Adsense

Image
How to report invalid clicks to AdSense before get banned... Many AdSense publishers including me may have got this type of email. But don't worry you can create another Adsense Account. If you got the above email you can fill this form There are some crazy people out there who click Adsense Ads madly. Obviously they are not trying to increase your revenue, but try to ban you from Adsense. Whenever you get a lot of clicks from one user, Google will understand someone is trying to manipulate your Adsense account. Though Adsense credits the fraud clicks revenue on estimated earnings initially,  it will be discredited once they detect it as fraud. Then Google Ban your account. Ads:- How to notify AdSense about invalid clicks before gets banned    You can now notify google about invalid clicks before your account disabled. If you do this, they will save your request to their records. In the future if your account got invalid clicks, google will see your re

How to host a website

Image
Hosting a website is a good choice when you want to use website on your own HTML file or a script like Wordpress, Drupal, etc. But for a small blog you can use anyother blogging platform. Visit this blog HOW TO MAKE A BLOG Follow the below steps:- 1.Get a domain name     Before getting a domain, you must confirm your brand name. Because your domain name will be your brand. Then is your extension. Selecting extension is a simple, but it tells what is your company purposes. For example : example.com Here example is the domain name, .com is the extension. .com is the popular and the most used extension. To get a domain name, you have to register a domain name at a fixed price for a time limit. The time limit may be from 1 year upto 10 years. You can get a free domain name from freenom.com . But a free domain ends with .tk, .ml, .cf, .ga, etc. Using a free domain is not recomended for a buisness. Use the below links to get your paid domain. Google domains BlogOnl

Use Intent to open links and apps in sketchware

1) On a sketchware project add a button. 2) In that button click event add a ADD SOURCE DIRECTLY BLOCK. 3) paste the below code:- Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse("market://developer?id=<developer name>")); startActivity(i); 4) Thank you. Enjoy app making...

How to make money as a Blogger

Image
How to make money as a Blogger (Easy Steps) If you are new blogger first you need to create a new blog.. You can visit my previous post :- How to make a Blog in minutes... After creating a blog you can earn money by follow these steps:- 1. Buy a custom domain from any domain providers. Here are a list of domain providers:- BigRock NameCheap GoDaddy Google Domains 2. Then Connect your custom domain to your Blog. 3. Then apply for Adsense account . 4. Adsense approval may take upto 7 days. You can watch a Youtube video :- Adsense Approval Adsense Account

How to Make a blog

Image
How to make your blog in minutes... What is Blog? Blog is a nothing but a shortening of weblog . It can be used to make  a informational website, a vlog, etc. Now get into the creation of a Blog... Select a Blogging platform There are many options to start a blog which has its own specials, pros, cons. But it is depending on your blog topics..             1. Wordpress.com WordPress is a free and open-source content management system based on PHP & MySQL . Features include a plugin architecture and a template system. It is most associated with blogging but supports other types of web content including more traditional mailing lists and forums, media galleries, and online stores. Since Wordpress.com is a  free and open-source content management system, Wordpress.org is a hosting service for bloggers. So don't confuse...            2.  Blogger.com Blogger is a blog-publishing service that allows multi-user blogs with time-stamped entrie

Top 5 free best logo design websites

Image
Here are the Top 9 Free Best Logo Design Website... Wix Logo Maker Wix Logo Maker With Wix Logo Maker, you can design a logo that looks exactly the way you want. Each logo is completely customizable—change the font, color, size, text and more to fit your brand. Plus, you get full commercial use rights of any logo you create.  Logojoy LogoJoy Logojoy is like working with a real designer, but without the cost or back and forth. The intelligent learning AI uses a guided process to help you make some key choices before generating stunning results. And the built-in tools let you modify in real-time. The whole process is free until you find the perfect logo and costs as little as $20. Shopify Shopify Free logo maker tool to generate custom design logos in minutes. Choose free vectors, fonts and icons to design your own logo. Logaster Logaster Logaster is an online tool to create really good designs for your logo. It’s the most used on

Integrate Google Sign In in Android Studio

Image
Today I'll teach you how to Integrate Google SignIn in android studio. First for signIn we need Internet Permission. So add Internet permission. <uses-permission android:name="android.permission.INTERNET" /> Then we go to activity_main.xml. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/main_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#000000" android:weightSum="4"> <ProgressBar android:id="@+id/progressBar" android:layout_width="0dp" android:layout_height="0dp" android:layout_marginBottom="8

Screen Recorder in Android Studio

Image
Today I'll teach you how to make a screen recording app in android studio. Screen Recording feature is available only for API level above or equal 21(LOLLIPOP) . Before Lollipop app must require root permission to record screen. You can also the whole project Download Project Follow the below instructions :- 1) Add the Storage permission and audio permission in your Android Manifest file. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE"/> <uses-permission android:name="android.permission.RECORD_AUDIO"/> Your android manifest will look like below:- <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.san

Make a layout with rounded corners in sketchware

Image
1) Create a new sketchware project. 2) Drag and drop a Linear layout with id linear1 . 3) Add a widget that you want make a rounded corners inside Linear Layout linear1 . It may be EditText or Button or TextView or ImageView, etc. 5) Add a new more block round with View view , string color  ,string stroke_c and a number radius . 6) Paste the below code to the more block :- android.graphics.drawable.GradientDrawable gd = new android.graphics.drawable.GradientDrawable(); gd.setColor(Color.parseColor(_color)); gd.setCornerRadius((float)_radius); gd.setStroke(2, Color.parseColor(_stroke_c)); _view.setBackground(gd); 7) In onCreate event add the more block with your view, colour, stroke colour and radius. Thank you...

Make an advanced text editor in sketchware

Image
PLEASE SUBSCRIBE Click here to subscribe... Code :- Collections.sort(string_files, String.CASE_INSENSITIVE_ORDER); Collections.sort(newVv, String.CASE_INSENSITIVE_ORDER); Collections.sort(hiddenOnes, String.CASE_INSENSITIVE_ORDER); Thank you

Toast a message with a custom view in sketchware

1) Create a new Sketchware Project. 2) Add a new Custom view with name custom . 3) Add a more block customToast with a String text . 4) In that Moreblock add a ASD block and copy the below code:- LayoutInflater inflater = getLayoutInflater(); View toastLayout = inflater.inflate(R.layout.custom, null); TextView textview = (TextView) toastLayout.findViewById(R.id.textview1); textview.setText(_text); LinearLayout linear = (LinearLayout) toastLayout.findViewById(R.id.linear1); Toast toast = new Toast(getApplicationContext()); toast.setDuration(Toast.LENGTH_SHORT); toast.setView(toastLayout); toast.show(); 5) Go to the custom view then add a Linear Layout linear1 and a TextView textview1 inside it. 6) By using this moreblock customToast you can show custom toast. Thank You... In order to make the custom toast rounded replace the above code with this code:- LayoutInflater inflater = getLayoutInflater(); View toastLayout = inflater.inflate(R.layout.custom, nu

Menu with icon in actionbar in sketchware

Image
1) Create a sketchware project. 2) Add a more block extra. 3) In that more block  extra  do as below:- 4) Code used in First ASD block is:- } @Override public boolean onCreateOptionsMenu (Menu menu){ menu.add(0,0,0,"Settings").setIcon(R.drawable.settings) .setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS); menu.add(0,1,1,"Profile"); menu.add(0,2,2,"About"); menu.add(0,3,3,"Rate now"); return true; 5) Code used in Second ASD block is:- } @Override public boolean onOptionsItemSelected(MenuItem item){ switch (item.getItemId()){ case 0: _settings(); break; case 1: _profile(); break; case 2: _about(); break; case 3:  _rate(); break; } return super.onOptionsItemSelected(item); 6) Since I added 4 menus there is only 4 cases. 7) Then add a image with name settings. 8) Then add 4 more blocks. In here I am created  settings ,  profile ,  about ,  rate  . That,s all. Save and run project...