ad728

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: https://chitika.com/publishers/apply/?refid=shyamkumarkc20 *************************
Related Videos How To Maximize RevenueHits Earning https://youtu.be/ceN5-2I9CJA 

Stay Connected
 Like My Facebook Page http://bit.ly/2oZqBCy Follow me on Twitter http://bit.ly/2q0pFOu Visit my blog http://bit.ly/2p8rYtP Subscribe: http://bit.ly/2uFbSuT
How to monetize your Facebook page||RevenueHits and Chitika? How to monetize your Facebook page||RevenueHits and Chitika? How to monetize your Facebook page||RevenueHits and Chitika?

How to monetize your Facebook page||RevenueHits and Chitika?

Share:

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);        setContentView(R.layout.main);    }
public void onShare(View v){Intent in=new Intent(Intent.ACTION_SEND); in.setType("text/plain"); in.putExtra(in.EXTRA_TEXT,"www.shyamkumarkc.blogspot.com"); startActivity(in);}}
Main xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical">
    <TextView  android:text="Share This Tutorial anywhere you like"  android:layout_width="wrap_content"        android:layout_height="wrap_content" />
<Button android:text="Share" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="onShare"/>
</LinearLayout>
Related Video:
AIDE Tutorial- 37 Share on Facebook, Messenger and WhatsApp

Share:

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);
        setContentView(R.layout.main);
Spinner spin=(Spinner)findViewById(R.id.mainSpinner);
String[] countries={
"Nepal","India","China","USA","UK",};
ArrayAdapter adpater=new ArrayAdapter(this,android.R.layout.simple_spinner_dropdown_item,countries);
spin.setAdapter(adpater);    }}
Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
        android:text="Countries Name"
        android:layout_width="wrap_content"  
android:layout_height="wrap_content" />
<Spinner
android:id="@+id/mainSpinner"
android:layout_width="wrap_content"  
android:layout_height="wrap_content" />
</LinearLayout>
Related articles:
1. AIDE Tutorial-13 Spinner
script data-cfasync='false' type='text/javascript' src='//p24789.clksite.com/adServe/banners?tid=24789_34790_14'>
Share:

Tuesday, October 17, 2017

AIDE Tutorial - 47 Admob Banner in AIDE

AIDE Tutorial - 47 Admob Banner in AIDE

Watch the video


First of all add the library for ads
Second go to main xml
Change the linear layout to relative layout
And add
xmlns:ads="http://schemas.android.com/apk/res-auto"
And add
Layout for banner
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"       android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111">
</com.google.android.gms.ads.AdView>
But don't forget to add your own adUnitId. Get your ad unit from admob.com
Then go to Manifest.xml
Add metadata code before <activity>
<meta-dataandroid:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
And after </activity> add
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
Before <application> or after   </application> add permission
  
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
  Now its time to add java code
AdView mAdView = (AdView) findViewById(R.id.adView);
        AdRequest adRequest = new AdRequest.Builder()
.build();
        mAdView.loadAd(adRequest);
Share:

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 create a new xml button_big_round
And paste this code
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="oval">
            <stroke android:color="#000000" android:width="5dp" />
            <solid android:color="#87CEEB"/>
            </shape></item></selector>

Other Related Video

  1. AIDE Tutorial-6 Adding Button on App
  2. AIDE Tutorial- 7 Toast Button
  3. AIDE Tutorial- 9 Internet Button
Share:

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 In"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:onClick="zoomout"
android:text="Zoom Out"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
Then Create a new folder anim and inside anim folder create two xml file i.e. fade in and fade out. Copy the code below for both xml file.
Zoom_in xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<scale
android:duration="1000"
android:fromXScale="1"
android:fromYScale="1"
android:pivotX="50%"
android:pivotY="50"
android:toXScale="1.5"
android:toYScale="1.5"></scale></set>
Zoom_out xml
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<scale
android:duration="1000"
android:fromXScale="1"
android:fromYScale="1"
android:pivotX="50%"
android:pivotY="50"
android:toXScale="0.5"
android:toYScale="0.5"></scale></set>
Add onClick method in Java connect it with animation
package com.kcgroup.AZIO;
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)
{super.onCreate(savedInstanceState);
setContentView(R.layout.main);}
public void zoomin(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.zoom_in);
image.startAnimation(an);}
public void zoomout(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.zoom_out);
image.startAnimation(an);}}
Now build the app and it should work fine.
Share:

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 In"
android:onClick="fadein"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:text="Fade Out"
android:onClick="fadeout"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
Then Create a new folder anim and inside anim folder create two xml file i.e. fade in and fade out. Copy the code below for both xml file.
Fade_in.xml
<set android:interpolator="@android:anim/accelerate_interpolator" xmlns:android="http://schemas.android.com/apk/res/android">
<alpha android:duration="5000" android:fromalpha="0" android:toalpha="1"></alpha>
</set>
Fade_out.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator" >
<alpha
android:fromAlpha="1"
android:toAlpha="0"
android:duration="5000" ></alpha>
</set>

Add onClick method in Java connect it with animation
package com.kcgroup.AFIO;
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)
{super.onCreate(savedInstanceState);
setContentView(R.layout.main);}
public void fadein(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an= AnimationUtils.loadAnimation(getApplicationContext(),R.anim.fade_in);
image.startAnimation(an);}
public void fadeout(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an= AnimationUtils.loadAnimation(getApplicationContext(),R.anim.fade_out);
image.startAnimation(an);}}
Now build the app and it should work fine.
Share:

Monday, October 9, 2017

How to Contact Vianet Customer Care?

How to Contact Vianet Customer Care?

  1. Vianet Customer Care at +977 1 4217555, +977 9801046410
  2. E-mail at customercare@vianet.com.np
  3. Send us a message on facebook (ID: vianetnepal)
  4. Visit nearest Vianet Customer Service Center
    (Location details available at http://www.vianet.com.np/contactus)
  5. Send SMS: Type ‘Vianet Support <Customer ID>’ and send SMS to “34001”.
  6. Create Support Ticket from Customer Portal/app.

Related Article

  1. How To Contact Vianet Customer Care
  2. Vianet Nepal Offers 30 GB Data For Free

Related Videos

  1. Vianet Nepal Offers 30 GB Data For Free
  2. How to pause and resume GB data on Vianet Nepal||Nepali
  3. Vianet Online Payment Via eSewa

Related Link

  1. Website
  2. Android Application
Share:

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 whilst growing and exceeding our targets. It has a well-established track record and our services have always met with great customer satisfaction.


Vianet recently announced 30 GB data for free to those customers who install its Vianet App from playstore and login via it. Lets see video.

FAQ

1. What if already installed?
Ans: You can get the offer data too. First uninstall and install and login its quite easy you will be provided 30 GB data as Bonus
2. What if I have only IOS/iPhone?
Ans: Be Smart! Contact your friend or Family member use their phone to login. Once you have your 30 GB Bonus, uninstall it.
3. Do 30 GB have expiry date?
Ans: It will be added to your previous data which means data will expire with your internet Expiration Date.

Related Article

  1. How To Contact Vianet Customer Care
  2. Vianet Nepal Offers 30 GB Data For Free

Related Videos

  1. How to pause and resume GB data on Vianet Nepal||Nepali
  2. Vianet Online Payment Via eSewa
Share:

Saturday, October 7, 2017

कार्यालय व्यवस्थापन

कार्यालय व्यवस्थापन र यसका महत्त्वहरु 

कुनै खास व्यवसायीक वा प्रशासनिक कार्य सम्पादन गर्ने स्थान नै कार्यालय हो ,जहाँ कार्यालयको सञ्चालन र समन्वय गर्न विविध प्रकारका सुचना तथा तथ्यांकको संकलन,वर्गीकरण,विश्लेषण र संरक्षण गर्ने कार्य गरिन्छ ।
कार्यालयको पुर्व निर्धारित लक्ष्य तथा उद्धेश्य हासिल गर्नका लागि आवश्यक साधन स्रोत (मानवीय,भौतिक तथा वित्तीय)को संकलन गर्ने ,तिनिहरूको समन्वय गर्ने ,व्यवस्थित ढंगले परिचालन गर्ने तथा कार्य सम्पादन गर्ने कार्यहरूको योजना बनाउने ,नियन्त्रण गर्ने र निर्देशन गर्ने जस्ता व्यवस्थापकीय कार्य गर्नु नै कार्यालय व्यवस्थापन हो ।
कार्यालय व्यवस्थापनले उपलब्ध साधन स्रोतको अधिकतम उपयोग र परिचालन गरि कार्यालयलाई बढी उत्तरदायी ,व्यवहारिक ,प्रतिफलदायी , मितव्ययी तथा सरल बनाउने कार्यमा सहयोग गर्ने हुँदा कार्यालयमा यसको महत्त्व रहेको छ ।

कार्यालय व्यवस्थापनका थप महत्त्व यसप्रकार छन्

  • मितव्ययी ढंगबाट कार्यालयको लक्ष्य हासिल गर्न
  • प्रभावकारी सञ्चार सेवा प्रवाह गर्न
  • सुचनाको संकलन ,वर्गीकरण तथा विश्लेषण गरि निर्णय प्रक्रियामा उपलब्ध गराउन
  • कार्यालयको क्रियाकलापहरूमा एकरुपता ल्याउन
  • कर्मचारीलाई उच्च मनोबलका साथ अभिप्रेरित गराइ राख्न
  • कार्यालयको efficiency & effectiveness मा अभिवृद्धि गर्न
  • कार्यालयका उपलब्ध स्रोत साधनको प्रभावकारी परिचालन गर्न
  • कार्यालयका प्रशासनिक कार्यहरूलाई समयानुकूल बनाउन ,इत्यादी
Share:

Total Pageviews

Sponsor

Sponsor

ad300

Blog Archive