AIDE Tutorial - 46 Blink Animation
Java
package com.kcgroup.animblink;
import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.view.animation.*;
public class MainActivity extends Activity
{ @Override
protected void onCreate(Bundle savedInstanceState)
...
Saturday, November 11, 2017
AIDE Tutorial - 40 Calendar View
AIDE Tutorial - 40 Calendar View
( function() {
if (window.CHITIKA === undefined) { window.CHITIKA = { 'units' : [] }; };
var unit = {"calltype":"async[2]","publisher":"shyamkumarkc20","width":550,"height":250,"sid":"Chitika Default"};
var placement_id = window.CHITIKA.units.length;
window.CHITIKA.units.push(unit);
document.write('');
}());
Watch...
Tuesday, November 7, 2017
Revenue hits
How to monetize your Facebook page||RevenueHits and Chitika?
( function() {
if (window.CHITIKA === undefined) { window.CHITIKA = { 'units' : [] }; };
var unit = {"calltype":"async[2]","publisher":"shyamkumarkc20","width":550,"height":250,"sid":"Chitika Default"};
var placement_id = window.CHITIKA.units.length;
window.CHITIKA.units.push(unit);
...
Sunday, October 29, 2017
How to monetize your Facebook page||RevenueHits and Chitika
How to monetize your Facebook page||RevenueHits and Chitika?
https://youtu.be/AYvSruNF8lU
Ans:Watch the video
How to monetize your Facebook page||RevenueHits and Chitika?
How to monetize your Facebook page||RevenueHits and Chitika
************************
Sign Up Referral Link
Revenue Hits: https://www.revenuehits.com/lps/pubref/?ref=@RH@CP-ebWdYEPxlm9h7C1OXOA
Chitika:...
Friday, October 20, 2017
AIDE Tutorial - 37.1 Share Action
AIDE Tutorial- 37.1 Share Action
Watch the video below
Java
package com.kcgroup.share;
import android.app.*;
import android.os.*;
import android.view.*;
import android.content.*;
public class MainActivity extends Activity
{ @Override protected void onCreate(Bundle savedInstanceState)
{ super.onCreate(savedInstanceState); ...
AIDE Tutorial - 13.1 Spinner in Java
AIDE Tutorial - 13.1 Spinner in Java
Watch the video
MainActivity.Java
package com.kcgroup.SIJ;
import android.app.*;
import android.os.*;
import android.widget.*;
public class MainActivity extends Activity
{ @Override
protected void onCreate(Bundle savedInstanceState)
{ super.onCreate(savedInstanceState);
...
Tuesday, October 17, 2017
AIDE Tutorial - 47 Admob Banner in AIDE
AIDE Tutorial - 47 Admob Banner in AIDE
Watch the video
( function() {
if (window.CHITIKA === undefined) { window.CHITIKA = { 'units' : [] }; };
var unit = {"calltype":"async[2]","publisher":"shyamkumarkc20","width":550,"height":250,"sid":"Chitika Default"};
var placement_id = window.CHITIKA.units.length;
window.CHITIKA.units.push(unit);
...
Saturday, October 14, 2017
AIDE Tutorial-6.1 Round Button
AIDE Tutorial-6.1 Round Button
In this aide tutorial i will show you how to make a round button Main.xml
Watch the video below and try yourself
<Button
android:id ="@+id/push_button"
android:layout_width="150dp"
android:layout_height="150dp"
android:text="Round Button"
android:background="@drawable/button_big_round"/>
Go to drawable...
Thursday, October 12, 2017
AIDE Tutorial - 42 Animation Zoom In And Zoom Out
AIDE Tutorial - 42 Animation Zoom In And Zoom Out
Watch the below video and try yourself
Create an ImageView with id and image sources and add two buttons with onclick method
Main xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:src="@drawable/ic_launcher"
android:id="@+id/mainImageView"
android:layout_width="match_parent"
android:layout_height="wrap_content
android:layout_weight="4"/>
<Button
android:onClick="zoomin"
android:text="Zoom...
AIDE Tutorial - 41 Animation Fade In And Fade Out
AIDE Tutorial - 41 Animation Fade In And Fade Out
Watch the below video and try yourself
Create an ImageView with id and image sources and add two buttons with onclick method
Main xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/mainImageView"
android:src="@drawable/ic_launcher"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="4"/>
<Button
android:text="Fade...
Monday, October 9, 2017
How to Contact Vianet Customer Care?
How to Contact Vianet Customer Care?
Vianet Customer Care at +977 1 4217555, +977 9801046410
E-mail at customercare@vianet.com.np
Send us a message on facebook (ID: vianetnepal)
Visit nearest Vianet Customer Service Center(Location details available at http://www.vianet.com.np/contactus)
Send SMS: Type ‘Vianet Support <Customer ID>’ and...
Vianet Nepal Offers 30 GB Data For Free

Vianet Nepal Offers 30 GB Data For Free
This is the good news to all Vianet customer. Vianet has been in the business of providing state of the art broadband internet and related services for more than a decade now and have introduced blazing fast Fiber Internet to our client’s...
Saturday, October 7, 2017
कार्यालय व्यवस्थापन
कार्यालय व्यवस्थापन र यसका महत्त्वहरु
कुनै खास व्यवसायीक वा प्रशासनिक कार्य सम्पादन गर्ने स्थान नै कार्यालय हो ,जहाँ कार्यालयको सञ्चालन र समन्वय गर्न विविध प्रकारका सुचना तथा तथ्यांकको संकलन,वर्गीकरण,विश्लेषण र संरक्षण गर्ने कार्य गरिन्छ ।
कार्यालयको पुर्व निर्धारित लक्ष्य तथा उद्धेश्य हासिल गर्नका लागि आवश्यक साधन स्रोत (मानवीय,भौतिक तथा...
Friday, September 29, 2017
AIDE Tutorial - 38 Show installed Apps Name
AIDE Tutorial - 38 Show installed Apps Name
List of installed apps
This app will help you to get the list of apps installed in your phone.
Java
package com.kcgroup.showappsname;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.content.pm.*;
import android.content.*;
import java.util.*;
public class MainActivity...
Monday, September 25, 2017
Taxation
Taxation
Taxation is the biggest source of public revenue of modern government. Tax is a kind of money of which it is a legal duty of every citizen of a country to pay honestly. It may be levied on income, property and even at the time of purchasing commodity. In short, tax is the major source of government income. It is a compulsory payment to the...
15 Best Use of OTG Cable
15 Best Use of OTG Cable
OTG (On The Go) cables donot support on all the devices before buying please make a google search to know whether your device support or not.
Connect Keyboard
Connecting smartphone to external keyboard from OTG is yes now possible. This will help the user to type using the computer's keyboard freely (plug and play). There's...
Friday, September 22, 2017
नेपाल टेलिकमको दसैंमा छुट र अफर
नेपाल टेलिकमले दसैंको अवसरमा विभिन्न छुट र अफर ल्याएको छ । विगतमा दसैं तिहारमा दिँदै आएको सुविधालाई यसपालि पनि निरन्तरता दिँदै थप केही अफर ल्याएको कम्पनीले जनाएको छ ।
रिचार्जमा बोनस
जिएसएम तथा सिडिएमए प्रिपेड मोबाइलमा रिचार्ज कार्डमार्फत रिचार्ज गर्दा असोज पाँचदेखि १० गतेसम्म रिचार्ज गर्दा बोनस दिएको छ । ग्राहकले ५० देखि हजार रुपैयाँ रिचार्ज...