ad728

Friday, December 29, 2017

AIDE Tutorial - 46 Blink Animation

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)
    {super.onCreate(savedInstanceState);
        setContentView(R.layout.main);    }
public void blink(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.blink);
image.startAnimation(an);}}
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">
    <ImageView
android:layout_weight="4"
        android:src="@drawable/ic_launcher"
android:id="@+id/mainImageView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
<Button
android:text="Blink"
android:onClick="blink"
android:layout_width="wrap_content"        android:layout_height="wrap_content" />
</LinearLayout>
Blink.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
>
<alpha android:fromAlpha="0"
android:toAlpha="1"
android:duration="1000"
android:repeatMode="reverse"
android:repeatCount="2"/>
</set>
Other Related Articles:
  1. AIDE Tutorial - 41 Animation Fade In & Fade Out
  2. AIDE Tutorial - 42 Animation Zoom In & Zoom Out
  3. AIDE Tutorial - 43 Animation Bounce Top Bottom Left Right
  4. AIDE Tutorial - 44 Rotate Animation
  5. AIDE Tutorial - 45 Slide Animation
  6. AIDE Tutorial - 46 Blink Animation
Share:

AIDE Tutorial - 43 Animation Bounce Top Bottom Left Right

AIDE Tutorial - 43 Animation Bounce Top Bottom Left Right

Watch the video below

Main Activity.java
package com.kcgroup.animbounce;
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 top(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounce_top);
image.startAnimation(an);}
public void bottom(View v){ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounce_bottom);
image.startAnimation(an);}
public void right(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounce_right);
image.startAnimation(an);}
public void left(View v){ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounce_left);image.startAnimation(an);}}

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">
    <ImageView
android:layout_weight="4"
android:id="@+id/mainImageView"
        android:src="@drawable/ic_launcher"
        android:layout_width="match_parent"        android:layout_height="wrap_content" />
<Button
android:text="Top"
android:onClick="top"
android:layout_width="match_parent"        android:layout_height="wrap_content" />
<Button
android:text="Bottom"
android:onClick="bottom"
android:layout_width="match_parent"        android:layout_height="wrap_content" />
<Button
android:text="Right"
android:onClick="right"
android:layout_width="match_parent"        android:layout_height="wrap_content" />
<Button
android:text="Left"
android:onClick="left"
android:layout_width="match_parent"        android:layout_height="wrap_content" />
</LinearLayout>
Create a new folder anim add four xml
Bounce_Bottom.xml
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
android:interpolator="@android:anim/bounce_interpolator">
<scale
android:duration="1000"
android:fromXScale="1"
android:fromYScale="0"
android:toXScale="1"
android:toYScale="1"></scale></set>
Bounce_left.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
android:interpolator="@android:anim/bounce_interpolator">
<scale
android:duration="1000"
android:fromXScale="1"
android:fromYScale="1"
android:toXScale="0"
android:toYScale="1"></scale></set>
Bounce_right.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
android:interpolator="@android:anim/bounce_interpolator">
<scale
android:duration="1000"
android:fromXScale="0"
android:fromYScale="1"
android:toXScale="1"
android:toYScale="1"></scale></set>

Bounce_Top.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
   android:fillAfter="true"
   android:interpolator="@android:anim/bounce_interpolator">
   <scale
   android:duration="1000"
   android:fromXScale="1"
   android:fromYScale="1"
   android:toXScale="1"
   android:toYScale="0"></scale></set>

Share:

Member Countries of G20

List of Member Countries of G 20

  1. Germany
  2. USA
  3. Russia
  4. UK
  5. Japan
  6. India
  7. South Africa
  8. Indonesia
  9. Turkey
  10. Australia
  11. France
  12. Canada
  13. Brazil
  14. China
  15. Argentina
  16. Mexico
  17. European Union
  18. Saudi Arabia
  19. South Korea
  20. Italy
Share:

Saturday, December 16, 2017

AIDE Tutorial - 50 Rating Bar

AIDE Tutorial - 50 Rating Bar
Watch the Video Below


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="Rate Our App"
        android:layout_width="wrap_content"       android:layout_height="wrap_content" />
<RatingBar
android:text="Rate: "
android:id="@+id/mainRatingBar"
android:layout_width="wrap_content"        android:layout_height="wrap_content" />
<TextView
android:textSize="20sp"
android:id="@+id/mainTextView"
android:text="Rating :"
android:layout_width="wrap_content"       android:layout_height="wrap_content" />
</LinearLayout>
MainActivity.java
package com.kcgroup.ratingbar;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.widget.RatingBar.*;
public class MainActivity extends Activity
{    @Override
    protected void onCreate(Bundle savedInstanceState)   {        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
final TextView Result=(TextView)findViewById(R.id.mainTextView);
RatingBar RB=(RatingBar)findViewById(R.id.mainRatingBar);
RB.setOnRatingBarChangeListener(new OnRatingBarChangeListener(){
@Override
public void onRatingChanged(RatingBar arg0,float rating,boolean arg2){Result.setText("Rating :"+String.valueOf(rating));}});    }}
Share:

Thursday, December 14, 2017

AIDE Tutorial - 44 Rotate Animation

AIDE Tutorial - 44 Rotate Animation

Watch the Video Below

MainActivity.Java
package com.kcgroup.animrotate;
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 cw(View v){ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.rotate_clockwise);
image.startAnimation(an);}
public void ccw(View v){ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.rotate_countercw);image.startAnimation(an);}}
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" >
    <ImageView
android:layout_weight="4"
android:id="@+id/mainImageView"
        android:src="@drawable/ic_launcher"
        android:layout_width="match_parent"      android:layout_height="wrap_content" />
<Button
android:onClick="cw"
android:text="Clock Wise"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:onClick="ccw"
android:text="Counter Clock wise"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
Rotate_clockwise.xml
<?xml version="1.0" encoding="utf-8"?>
<setxmlns:android="http://schemas.android.com/apk/res/android"
>
<rotate
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:duration="1000"
android:repeatCount="2"
android:interpolator="@android:anim/cycle_interpolator"/></set>
Rotate_CounterClockWise.xml
<?xml version="1.0" encoding="utf-8"?>
<setxmlns:android="http://schemas.android.com/apk/res/android"
>
<rotate
android:fromDegrees="360"
android:toDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:duration="1000"
android:repeatCount="2"
android:interpolator="@android:anim/cycle_interpolator"/></set>
Share:

Wednesday, December 13, 2017

AIDE Tutorial - 45 Slide Animation

AIDE Tutorial - 45 Slide Animation

Watch the Video Below
MainActivity.java
package com.kcgroup.animslide;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.view.animation.*;
import android.view.*;
public class MainActivity extends Activity
{    @Override
    protected void onCreate(Bundle savedInstanceState)    {        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);    }
public void top(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.silde_top);
image.startAnimation(an);}
public void bottom(View v){ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.silde_bottom);
image.startAnimation(an);}
public void right(View v){
ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.slide_right);
image.startAnimation(an);}
public void left(View v){ImageView image=(ImageView)findViewById(R.id.mainImageView);
Animation an=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.slide_left);
image.startAnimation(an);}}


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">
    <ImageView
android:layout_weight="4"
android:id="@+id/mainImageView"
        android:src="@drawable/ic_launcher"
        android:layout_width="match_parent"        android:layout_height="wrap_content" />
<Button
android:onClick="top"
android:text="Top"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:onClick="bottom"
android:text="Bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:onClick="right"
android:text="Right"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:onClick="left"
android:text="Left"
android:layout_width="wrap_content"
android:layout_height="wrap_content" /></LinearLayout>


Slide_bottom.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<scale
android:duration="2000"
android:fromXScale="1"
android:fromYScale="0"
android:toXScale="1"
android:toYScale="1"
android:interpolator="@android:anim/linear_interpolator"/>
</set>

Slide_left.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<scale
android:duration="2000"
android:fromXScale="1"
android:fromYScale="1"
android:toXScale="0"
android:toYScale="1"
android:interpolator="@android:anim/linear_interpolator"/>
</set>

Slide_right.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<scale
android:duration="2000"
android:fromXScale="0"
android:fromYScale="1"
android:toXScale="1"
android:toYScale="1"
android:interpolator="@android:anim/linear_interpolator"/>
</set>

Slide_top.xml
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<scale
android:duration="2000"
android:fromXScale="1"
android:fromYScale="1"
android:toXScale="1"
android:toYScale="0"
android:interpolator="@android:anim/linear_interpolator"/>
</set>
Share:

Sunday, December 10, 2017

AIDE Tutorial - 49.1 Context Menu on ListView

AIDE Tutorial - 49.1 Context Menu on ListView

Watch the Video Below



Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <ListView
android:id="@+id/mainTextView"
android:layout_width="wrap_content"      android:layout_height="wrap_content" />
</LinearLayout>
Main Activity.java
package com.kcgroup.CM;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.view.*;
import android.view.ContextMenu.*;
public class MainActivity extends Activity
{ListView list;
    @Override
    protected void onCreate(Bundle savedInstanceState)   {       super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
list=(ListView)findViewById(R.id.mainTextView);

String[] name={"A","B","C","D"};
ArrayAdapter adapter=new ArrayAdapter(this,android.R.layout.simple_list_item_1,name);
list.setAdapter(adapter);
registerForContextMenu(list);    }
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo)
{ // TODO: Implement this method
super.onCreateContextMenu(menu, v, menuInfo);
menu.setHeaderTitle("Select Action");
menu.add(0,v.getId(),0,"Call");
menu.add(0,v.getId(),0,"SMS");
menu.add(0,v.getId(),0,"VideoCall"); }
@Override
public boolean onContextItemSelected(MenuItem item)
{ if(item.getTitle()=="Call"){
Toast.makeText(this,"Call is Clicked",Toast.LENGTH_SHORT).show();
} else
if(item.getTitle()=="SMS"){
Toast.makeText(this,"SMS is Clicked",Toast.LENGTH_SHORT).show();
} else
if(item.getTitle()=="VideoCall"){ Toast.makeText(this,"VideoCall is Clicked",Toast.LENGTH_SHORT).show(); }
// TODO: Implement this method
return true; }}
Share:

AIDE Tutorial - 49 Context Menu on TextView

AIDE Tutorial - 49 Context Menu on TextView

Watch the Video Below



Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">
    <TextView
android:id="@+id/mainTextView"
android:textSize="25dp"
 android:text="Long Press to see context menu"        android:layout_width="wrap_content"       android:layout_height="wrap_content" />
</LinearLayout>
MainActivity.java
package com.kcgroup.CM;


import android.app.*;
import android.os.*;
import android.widget.*;
import android.view.*;
import android.view.ContextMenu.*;
public class MainActivity extends Activity
{TextView text;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
text=(TextView)findViewById(R.id.mainTextView);
registerForContextMenu(text); }
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo)

{ // TODO: Implement this method
super.onCreateContextMenu(menu, v, menuInfo);
menu.setHeaderTitle("Select Action");
menu.add(0,v.getId(),0,"Call");
menu.add(0,v.getId(),0,"SMS");
menu.add(0,v.getId(),0,"VideoCall");}
@Override
public boolean onContextItemSelected(MenuItem item)
{ if(item.getTitle()=="Call"){
Toast.makeText(this,"Call is Clicked",Toast.LENGTH_SHORT).show();} else
if(item.getTitle()=="SMS"){ Toast.makeText(this,"SMS is Clicked",Toast.LENGTH_SHORT).show(); } else
if(item.getTitle()=="VideoCall"){ Toast.makeText(this,"VideoCall is Clicked",Toast.LENGTH_SHORT).show();
} // TODO: Implement this method
return true;}}

Share:

Friday, December 8, 2017

AIDE Tutorial - 48 PopUp Menu

AIDE Tutorial - 48 PopUp Menu


Watch the Video Below



Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">
    <Button
android:onClick="popup"
        android:text="PopUp"
        android:layout_width="wrap_content"        android:layout_height="wrap_content" /> </LinearLayout>

Java
package com.kcgroup.popup; import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.widget.PopupMenu.*;
public class MainActivity extends Activity
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
public void popup(View v){
PopupMenu pop=new PopupMenu (this,v);
MenuInflater mi=pop.getMenuInflater();
mi.inflate(R.menu.popup, pop.getMenu());
pop.show();
pop.setOnMenuItemClickListener(new OnMenuItemClickListener(){
@Override
public boolean onMenuItemClick(MenuItem aaa)
{ if(aaa.getItemId()==R.id.call){ Toast.makeText(getApplicationContext(),"Call is clicked",Toast.LENGTH_SHORT).show();}
if(aaa.getItemId()==R.id.sms){ Toast.makeText(getApplicationContext(),"SMS is clicked",Toast.LENGTH_SHORT).show();}
if(aaa.getItemId()==R.id.video){ Toast.makeText(getApplicationContext(),"Video Call is clicked",Toast.LENGTH_SHORT).show();}
// TODO: Implement this method
return true; }});}}
Create a new folder and add pop.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android">
   
    <item
        android:id="@+id/call"
        android:title="Call"/>
<item
        android:id="@+id/sms"
        android:title="SMS"/>
<item
        android:id="@+id/video"
        android:title="Video Call"/>
   
</menu>
Share:

Saturday, November 11, 2017

AIDE Tutorial - 40 Calendar View

AIDE Tutorial - 40 Calendar View

Watch the Video Below


Add the code below in Main.xml
  <CalendarView
        android:id="@+id/calendarView"
      android:layout_width="wrap_content"
     android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
        android:layout_centerVertical="true" />
Share:

Tuesday, November 7, 2017

Revenue hits

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?
Share:

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:

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 extends Activity
{
private ListView LV;
private ArrayList results=new ArrayList();
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

LV=(ListView)findViewById(R.id.mainListView);
PackageManager pm=this.getPackageManager();
Intent in=new Intent(Intent.ACTION_MAIN,null);
in.addCategory(Intent.CATEGORY_LAUNCHER);

java.util.List<ResolveInfo>list=pm.queryIntentActivities(in,PackageManager.PERMISSION_GRANTED);
for(ResolveInfo rinfo:list){results.add(rinfo.activityInfo.applicationInfo.loadLabel(pm).toString());

}

LV.setAdapter(new ArrayAdapter(this,android.R.layout.simple_list_item_1,results));
    }
}
Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">
    <TextView
        android:text="Installed apps"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
<ListView
android:id="@+id/mainListView"
android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>
For more watch the video below
Share:

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 government by tax-payer without any expectation of some specified return.
The revenue of government comes basically from two sources i.e. non-tax sector and tax-sector. Non-tax revenue includes different sources like grants, gift, administrative income and business income like registration fee, fines and penalties. The basic objective of non-tax revenue is not called revenue, but to provide services to the people. In Nepal around 20% revenue comes from this source. Another source of government revenue is taxation. Custom duty, excise duty, vat, personal income taxes are some example of sources of tax revenue. In Nepal around 80% revenue comes from this source. The government pass for getting tax revenue is to collect tax as per act. The tax cannot be imposed without the act of parliament in Nepal too.

What is tax?

The word ‘Tax’ is derived from the Latin word ‘taxare’ which means to estimate. In simple words, it is compulsory payment by the people. If a person denies the tax payment, he/she may be penalized or punished in the court of law. So ‘Taxation’ is the compulsory contribution from a person to the government to meet expenses incurred in the common interest. So tax is the compulsory levy and those who are taxed have to pay it without any direct benefit. Due to this compulsory nature some economist says, “Nothing is certain except death and tax.” some economist says, “Death and tax are both certain but death is not annual, tax is annual.” Some economist says, “Death means stopping to pay tax.”
Tax is necessary contribution by the tax payer to social objectives like securing high level of employment, social security, promoting economic stability of nation, etc.

Features

Tax is an important tool in the development of economy. It affects the overall structure of the whole economy. The main elements of good tax system are highlighted below:
  1. Tax is the compulsory payment not a voluntary payment or donation.
  2. Tax is the payment to the government as per the prevailing law.
  3. Aim of tax collection is for public welfare.
  4. Taxes are paid by the person.
  5. Taxes are paid out of income.
  6. No effect on trade and industry. (honeybee concept)
  7. Tax is required to be paid at regular intervals.
  8. Failing to pay taxes is subject to punishment by law.

Objective

The primary objective of a tax system is to generate revenues to pay for the expenditures of government at all levels. Besides raising revenues, tax has become an instrument of social and economic policy for the government. The main objectives of taxation are:
  1. Raising public revenue Normally, the objective for the imposition of tax is to collect the revenue for the government. The government providing social service promoting economic development and meeting war expenditure all of this expansion in the scope of economic activities have created up greater fund to be spent by the government. The greater the need of funds the greater is resource of taxation. Thus, the aim of taxation is to raise public revenue to meet the increasing public expenditure.
  2. Reduction of inequalities in income and wealthAnother aim of taxation is to reduce the inequality income. One of the great problems of underdeveloped country is that there is the vast gap between the income of person in the highest income group and of those in the lowest income group. One of the objectives of taxation is to redistribute income and wealth in such a way as to ensure more just and equitable distribution. This is possible by taxing; rich people are imposed high tax and less tax to the poorer. This is the objective of progressive tax like income tax, wealth tax, etc.
  3. Restriction on unnecessary consumptionAnother objective of taxation is to restrict the unnecessary consumption particularly harmful commodities such as wine, cigarette, tobacco, etc. when heavy tax is imposed on such commodities, the consumption of such commodities are automatically reduced.
  4. Increase in national income
  5. Another objective of taxation is to Increase in national income. Tax is the main source of government income and used for productive purpose and thereby overall production is increased. These increase in production leads to increase in national income of country along with increase in per capita income.
  6. Business stability and maintaining full employmentAnother objective of taxation is to bring above business stability and maintain full employment condition. Low rate of taxation during business depression provides more income to the people and help in raising demand as well as to revive business activities.
    On the other hand, high rate of tax and additional tax may be useful to check inflation pressure on price. Thus, tax policy may be used as a regularity mechanism to achieve price stability, check business booms and depression and also maintain full employment in the economy.

    Canon of taxation

    There are different views regarding of a good tax system. The canons of taxation were first developed by Prof. Adam smith. Adam smith’s view in this respect is generally accepted as the features of good tax system. Smith’s four canons as outlined in his book entitled ‘An enquiry into the nature and causes of wealth of nation’ are as follows.
    1. Canon of equality or benefitAccording to this Canon, a good tax system is that which is based on the principle of equality. In broader sense, equality may be considered to be same as justice. In this principle, it is maintained that the tax must be levied according to the paying capacity of the individual. In other words, the principle of benefit states that the burden of taxation should be fair and just. Thus, rich people must be subjected to higher taxation in comparison to the poor. Higher the income higher the tax, lower the income lower the tax.
      Adam smith has defined this principle as “the subject of every state ought to contribute towards the support of the government, as nearly as possible, in proportion to their respective abilities, that is, in proportion to the revenue which they respectively enjoy under the protection of state.” He states that every individual should contribute according to his ability so that equalities of sacrifice are achieved.
    2. Canon of certaintyCanon of certainty is important Canon of taxation; Certainty in the word of smith is related to the time, method, manner and quantity of paying tax. It means the tax payer should determine the following manners carefully.a.The time of the payment b. Amount to be paid c.Methods of payment d.Place of payment e.The authority to whom the tax is to be paid
    3. Canon of convenientConvenient is another quality that should be in good tax system. Most of the tax payers are ordinary people who neither have sufficient tax-related knowledge nor the capacity to hire tax experts. The tax system should be of such type that can be followed by ordinary people in the society.
      The time of payment should be convenient like land revenue should best be collected at the harvest time. The income tax from the salary should best be collected when they get their salary from their employer.
    4. Canon of economyThis Canon of economy implies that minimum possible money should be spent in the collection of tax. The maximum part of collected amount should be deposited in the government treasury. Thus, all extra unnecessary expenditure in this collection should be avoided.
      In addition to above four Canons of taxation given by Adam smith, there are other Canons which have been added by modern economist Bastable are given below:
    5. Canon of productivityThis canon says that the fund raised through taxes should be utilized by the government in productive sector of the economy so that the taxpayer can see the utilization of their hand-earned money paid as taxes.
      According to this principle, it is better to impose a few productive taxes than to go in for a large number of unproductive taxes.
    6. Canon of elasticity/flexibilityThis canon signifies that the taxes should be levied in such a way the amount to be collected can be increased or decreased with the least inconvenience from the time to time.
      Other modern economists have added some other canons of taxation. They are:
    7. Canon of simplicity
    8. Canon of uniformity
    9. Canon of Neutrality
    10. Canon of co-ordination
    11. Canon of diversity

    Types/Classification of tax

    A tax can be classified into different division on different basis. Our government classifies tax in following heads i.e. taxes from international trade, taxes from internally produced and consumed goods, land revenue and taxes from income, profit and property.Basically, the taxes can be classified in following different ways:

    Direct tax

    A direct tax is one which cannot be shifted to others. A direct tax is actually paid by the person on whom it is legally imposed like income tax, vehicle tax, and property tax. It is directly collected by the government from the person who bears the tax burden. It is the tax on income and property.
    Merits:
    1. It satisfies the principle of ability to pay.
    2. It is economical because it is imposed on limited person in the society.
    3. It is elastic.
    4. It has quality of progressive.

    Demerits:

    1. It creates feeling of high burden of tax.
    2. It is inconvenient.
    3. There is high evasion.
    4. It burden goes to only small section of the people.
    5. It is expensive for the government to collect tax individually.
    6. Its scope is very narrow.

    Indirect tax

    An indirect tax is that tax where the person pays tax to the businessman, not to the government. In other words, an indirect tax is imposed on one person but paid partly or fully by another like excise duty, VAT, etc. indirect tax can be shifted.

    Merits:

    1. It is convenient
    2. It is difficult to evade
    3. It has wide base
    4. Mass participation
    5. It is universal in nature, it is collected from all the citizen
    6. It is not based on ability to pay
    7. It creates inequality in the society, rich and poor are same.
    8. This tax is uncertain with the fluctuation in demand the tax amount can also fluctuate.

    Major taxes in Nepal

    Nepal government collects revenue from different sources. Right now, the types of these taxes are around 24. However, from the revenue point of view only five types of tax have importance.

    Custom duty

    Taxes imposed by a country on all import and export goods, when the goods cross the boundaries of the country are called custom duty. It is also called boarder tax. The customs imposed on imported goods are called import duty whereas, imposed on imported goods are called export duty. In Nepal, from custom duty cover in previous year around 19% of the total revenue.

    Value added tax (VAT)

    VAT system was introduced in 1919 in France and used in 1954. Right now more than 160 countries in the world and latest country, south Sudan of the world use this tax system. In Nepal, this tax was introduced in 1997 replacing sales tax, entertainment tax, hotel tax and contract tax. Right now, the rate of VAT on Nepal is 0 and 13%. The contribution from this tax is around 29% of the total revenue.

    Excise duty

    Tax levied on the manufacture, sell or consumption of goods or services injurious to health or luxurious goods is called excise duty. It is narrow-based indirect tax for this tax provides around 12% of the total revenue in previous year.

    Local tax

    Local tax is the tax imposed by local governments however in Nepal the concept of local tax is a new one. It was started after 2054.

    Income tax

Share:

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.
  1. Connect Keyboard
  2. 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 no need to download or install any kind of software. Keyboard start to work instantly after connected.
  3. Connect Mouse
  4. Just like the Keyboard,connecting smartphone to mouse from OTG is yes now possible. This will help the user to click,go back and scroll also. It is also plug and play,there's no need to download or install any kind of software. Mouse start to work instantly after connected. You can also see the mouse icon in your smartphone while using which will be handy to show touch for making tutorial.
  5. Reverse charging (Charge other phone
  6. Now you can share your mobile battery also using OTG cable i.e. charging another phone. This is the best for emergency you can share your mobile battery with others. you need to have one OTG supported smartphone to charge another phone. This is the most heard features nowadays.
    How to operate?
    Connect OTG to the device which device is going to share battery and connect another phone using data cable. Now your phone starts to charge instantly.You can charge not only phones, you can even charge your smartwatch and other devices via USB connecter cable.
    Note: Use Reverse Charging features in emergency only.
  7. DSLR controller and monitor
  8. Do you have DSLR without rotating monitor ot you want to control you DSLR using smartphone then, this is the best option for you. For those who are fund of using DSLR can now you their smartphone not only as Big size screen monitor but also as a controller that can control all settings and modify as per needed using smartphone.
    For this features you need to install DSLR Controller App which is paid version. you can also find other free version but they mightnot work well and have limited access to the settings.
    You can even use your PC as a monitor of DSLR
  9. Connect Memory Card reader
  10. Connect Hard drive/Pendrive
  11. Connect Fan
  12. Connect Light
  13. Connect audio jack (sound card)
  14. Connect Game Controller
  15. Connect Ethernet Cable
  16. Connect Printer
  17. Portable DAC or amp
  18. Share contacts, messages between two phones
  19. Chromecast or HDMI
Share:

Friday, September 22, 2017

рдиेрдкाрд▓ рдЯेрд▓िрдХрдордХो рджрд╕ैंрдоा рдЫुрдЯ рд░ рдЕрдлрд░

рдиेрдкाрд▓ рдЯेрд▓िрдХрдорд▓े рджрд╕ैंрдХो рдЕрд╡рд╕рд░рдоा рд╡िрднिрди्рди рдЫुрдЯ рд░ рдЕрдлрд░ рд▓्рдпाрдПрдХो рдЫ । рд╡िрдЧрддрдоा рджрд╕ैं рддिрд╣ाрд░рдоा рджिँрджै рдЖрдПрдХो рд╕ुрд╡िрдзाрд▓ाрдИ рдпрд╕рдкाрд▓ि рдкрдиि рдиिрд░рди्рддрд░рддा рджिँрджै рдердк рдХेрд╣ी рдЕрдлрд░ рд▓्рдпाрдПрдХो рдХрдо्рдкрдиीрд▓े рдЬрдиाрдПрдХो рдЫ ।

рд░िрдЪाрд░्рдЬрдоा рдмोрдирд╕

рдЬिрдПрд╕рдПрдо рддрдеा рд╕िрдбिрдПрдордП рдк्рд░िрдкेрдб рдоोрдмाрдЗрд▓рдоा рд░िрдЪाрд░्рдЬ рдХाрд░्рдбрдоाрд░्рдлрдд рд░िрдЪाрд░्рдЬ рдЧрд░्рджा  рдЕрд╕ोрдЬ рдкाँрдЪрджेрдЦि резреж рдЧрддेрд╕рдо्рдо рд░िрдЪाрд░्рдЬ рдЧрд░्рджा рдмोрдирд╕ рджिрдПрдХो рдЫ । рдЧ्рд░ाрд╣рдХрд▓े релреж рджेрдЦि рд╣рдЬाрд░ рд░ुрдкैрдпाँ рд░िрдЪाрд░्рдЬ рдХाрд░्рдбрдоाрд░्рдлрдд рд░िрдЪाрд░्рдЬ рдЧрд░्рджा резреж рдк्рд░рддिрд╢рдд рдмोрдирд╕ рдкाрдЙрдиेрдЫрди् । резреж рд░ рд╕ो рднрди्рджा рдмрдвी рдПрдордкिрдУрдПрд╕рдоाрд░्рдлрдд рд░िрдЪाрд░्рдЬ рдЧрд░्рджा резреж рдк्рд░рддिрд╢рдд рдмोрдирд╕ рдЙрдкрд▓рдм्рдз рдЧрд░ाрдЗрдПрдХो рдЯेрд▓िрдХрдорд▓े рдЬрдиाрдПрдХो рдЫ ।

рдпुрдЯ्рдпुрдм рдбाрдЯा рдк्рдпाрдХेрдЬ

рдЬिрдПрд╕рдПрдо рдк्рд░िрдкेрдб рддрдеा рдкोрд╕्рдЯрдкेрдб рдоोрдмाрдЗрд▓рдоा рдпुрдЯ्рдпрдм рдбाрдЯा рдк्рдпाрдХेрдЬ рдЕрди्рддрд░्рдЧрдд рдПрдХ рд╕рдп рд░ुрдкैрдпाँрдоा рдПрдХ рдЬिрдмी рдбाрдЯा рднोрд▓्рдпुрдо рдк्рд░ाрдк्рдд рд╣ुрдиेрдЫ । рдпो рдк्рдпाрдХेрдЬ реирез рджिрдирдХो рдЕрд╡рдзिрд╕рдо्рдо рдк्рд░рдпोрдЧ рдЧрд░्рди рд╕рдХिрдиे рдЫ । рдд्рдпрд╕ैрдЧрд░ी, ремреж рд░ुрдкैрдпाँрдоा рдкाँрдЪ рд╕рдп рдПрдордмी рдбाрдЯा рднोрд▓्рдпुрдо резрек рджिрдирдХा рд▓ाрдЧि рдЙрдкрд▓рдм्рдз рд╣ुрдиेрдЫ । рдпो рдк्рдпाрдХेрдЬ рдЕрд╕ोрдЬ рел рджेрдЦि резреп рдЧрддेрд╕рдо्рдо рд▓िрдЗрд╕рдХ्рдиु рдкрд░्рдиे рдЯेрд▓िрдХрдорд▓े рдЬрдиाрдПрдХो рдЫ ।

рдХрдо्рдмो рдк्рдпाрдХेрдЬ

рдЬिрдПрд╕рдПрдо рддрдеा рд╕िрдбिрдПрдордП рдк्рд░िрдкेрдб/рдкोрд╕्рдЯрдкेрдб рдоोрдмाрдЗрд▓рдоा рдХрдо्рдкрдиीрдХो рдиेрдЯрд╡рд░्рдХрднिрдд्рд░ рдн्рд╡ाрдЗрд╕, рдПрд╕рдПрдордПрд╕ рд░ рдбाрдЯा рдк्рдпाрдХेрдЬрдЕрди्рддрд░्рдЧрдд резреж рд░ुрдкैрдпाँрдоा рем рдоिрдиेрдЯ рдн्рд╡ाрдЗрд╕, рдкाँрдЪрд╡рдЯा рдПрд╕рдПрдордПрд╕ рд░ резрел рдПрдордмी рдбाрдЯा рднोрд▓्рдпुрдо рдк्рд░ाрдк्рдд рд╣ुрдиेрдЫ । рдпो рдк्рдпाрдХेрдЬ рдПрдХ рджिрдирдХो рдЕрд╡рдзिрд╕рдо्рдо рдк्рд░рдпोрдЧ рдЧрд░्рди рд╕рдХिрдиे рдЫ । рдд्рдпрд╕ैрдЧрд░ी, реирел рд░ुрдкैрдпाँрдоा резрем рдоिрдиेрдЯ рдн्рд╡ाрдЗрд╕, резрем рд╡рдЯा рдПрд╕рдПрдордПрд╕ рд░ рейрел рдПрдордмी рдбाрдЯा рднोрд▓्рдпुрдо рддीрди рджिрди рдЕрд╡рдзिрдХा рд▓ाрдЧि рдЙрдкрд▓рдм्рдз рд╣ुрдиेрдЫ । релреж рд░ुрдкैрдпाँрдоा рекрел рдоिрдиेрдЯ рдн्рд╡ाрдЗрд╕, реирел рд╡рдЯा рдПрд╕рдПрдордПрд╕ рд░ ренреж рдПрдордмी рдбाрдЯा рднोрд▓्рдпुрдо рдкाँрдЪ рджिрди, рд╕рдп рд░ुрдкैрдпाँрдоा рдПрдХ рд╕рдп резреж рдоिрдиेрдЯ рдн्рд╡ाрдЗрд╕, рейреж рд╡рдЯा рдПрд╕рдПрдордПрд╕ рд░ рдПрдХ рд╕рдп релреж рдПрдордмी рдбाрдЯा рднोрд▓्рдпुрдо резреж рджिрди рд░ рддीрди рд╕рдп рд░ुрдкैрдпाँрдоा рддीрди рд╕рдп ремреж рдоिрдиेрдЯ рдн्рд╡ाрдЗрд╕, рекреж рд╡рдЯा рдПрд╕рдПрдордПрд╕ рд░ рем рд╕рдп рдПрдордмी рдбाрдЯा рднोрд▓्рдпुрдо рейреж рджिрдирдХा рд▓ाрдЧि рдЙрдкрд▓рдм्рдз рд╣ुрдиेрдЫ । рдпो рдк्рдпाрдХेрдЬ реирежренрек рдЕрд╕ोрдЬ рел рджेрдЦि резреп рдЧрддेрд╕рдо्рдо рд▓िрдЗрд╕рдХ्рдиु рдкрд░्рдиे рдЯेрд▓िрдХрдорд▓े рдЬрдиाрдПрдХो рдЫ ।

рдн्рд╡ाрдЗрд╕ рдк्рдпाрдХेрдЬ

рдЬिрдПрд╕рдПрдо рддрдеा рд╕िрдбिрдПрдордП рдк्рд░िрдкेрдб/рдкोрд╕्рдЯрдкेрдб рдоोрдмाрдЗрд▓рдоा рдХрдо्рдкрдиीрдХो рдиेрдЯрд╡рд░्рдХрднिрдд्рд░ рдн्рд╡ाрдЗрд╕ рдк्рдпाрдХेрдЬ рдЕрди्рддрд░्рдЧрдд резреж рд░ुрдкैрдпाँрдоा резрез рдоिрдиेрдЯ рдн्рд╡ाрдЗрд╕ рдХрд▓ рдк्рд░ाрдк्рдд рд╣ुрдиेрдЫ । рдпो рдк्рдпाрдХेрдЬ рдПрдХ рджिрдирдХो рдЕрд╡рдзिрд╕рдо्рдо рдк्рд░рдпोрдЧ рдЧрд░्рди рд╕рдХिрдиे рдЫ । рдд्рдпрд╕ैрдЧрд░ी, реирел рд░ुрдкैрдпाँрдоा рейреж рдоिрдиेрдЯ рддीрди рджिрди рдЕрд╡рдзिрдХा рд▓ाрдЧि рдЙрдкрд▓рдм्рдз рд╣ुрдиेрдЫ । релреж рд░ुрдкैрдпाँрдоा ренрел рдоिрдиेрдЯ рдкाँрдЪ рджिрди, рд╕рдп рд░ुрдкैрдпाँрдоा рджुрдИ рд╕рдп рдоिрдиेрдЯ резреж рджिрди рд░ рддीрди рд╕рдп рд░ुрдкैрдпाँрдоा рем рд╕рдп релреж рдоिрдиेрдЯ рейреж рджिрдирдХा рд▓ाрдЧि рдЙрдкрд▓рдм्рдз рд╣ुрдиेрдЫ । рдпो рдк्рдпाрдХेрдЬ рдЕрд╕ोрдЬ рел рджेрдЦि резреп рдЧрддेрд╕рдо्рдо рд▓िрдЗрд╕рдХ्рдиु рдкрд░्рдиेрдЫ ।

рдкिрдПрд╕рдЯिрдПрди/рд╕ी–рдлोрди рд╕ेрд╡ाрдоा рдмोрдирд╕

рдкिрдПрд╕рдЯिрдПрди рд░ рд╕ी–рдлोрди рд╕ेрд╡ाрдХा рдЧ्рд░ाрд╣рдХрд▓ाрдИ рди्рдпूрдирддрдо рдоाрд╕िрдХ рдорд╣рд╕ुрд▓ рджुрдИ рд╕рдп рд░ुрдкैрдпाँрдоा рдПрдХ рд╕рдп ренрел рд╕्рдеाрдиीрдп рдХрд▓ рдиिःрд╢ुрд▓्рдХ рдЙрдкрд▓рдм्рдз рдЧрд░ाрдЗрд░рд╣ेрдХोрдоा рдЕрд╕ोрдЬ рд░ рдХाрдд्рддिрдХ рдорд╣िрдиाрдоा рд╕рдп–рд╕рдп рд╕्рдеाрдиीрдп рдХрд▓ рдердк рдЧрд░ी рди्рдпूрдирддрдо рдоाрд╕िрдХ рдорд╣рд╕ुрд▓рдоा рдХुрд▓ рджुрдИ рд╕рдп ренрел рдХрд▓ рдиिःрд╢ुрд▓्рдХ рдЙрдкрд▓рдм्рдз рдЧрд░ाрдЗрдПрдХो рдЯेрд▓िрдХрдорд▓े рдЬрдиाрдПрдХो рдЫ ।

рдПрд╕рдПрдордПрд╕рдоा рдЫुрдЯ

рдЬिрдПрд╕рдПрдо рддрдеा рд╕िрдбिрдПрдордП рдк्рд░िрдкेрдб/рдкोрд╕्рдЯрдкेрдб рд╕ेрд╡ाрдоाрд░्рдлрдд рдХрдо्рдкрдиीрдХै рдиेрдЯрд╡рд░्рдХрднिрдд्рд░ рд╣ुрдиे рдПрд╕рдПрдордПрд╕ рд╕ेрд╡ाрдХो рд╡िрдж्рдпрдоाрди рдорд╣рд╕ुрд▓ рджрд░рдоा рдЕрд╕ोрдЬ резрез рджेрдЦि резреп рдЧрддेрд╕рдо्рдо релреж рдк्рд░рддिрд╢рдд рдЫुрдЯ рдЙрдкрд▓рдм्рдз рдЧрд░ाрдЗрдПрдХो рдЫ । рдЙрдХ्рдд рдЕрд╡рдзिрдоा рдХрдо्рдкрдиीрдХो рдиेрдЯрд╡рд░्рдХрднिрдд्рд░ релреж рдкैрд╕ाрдоा рдПрд╕рдПрдордПрд╕ рдЙрдкрд▓рдм्рдз рд╣ुрдиेрдЫ ।

рдлोрд░рдЬी рд╕िрдо рдиिःрд╢ुрд▓्рдХ рдкрд░िрд╡рд░्рддрди

рдХрдо्рдкрдиीрд▓े рдЕрд╕ोрдЬ рел рджेрдЦि рдХाрдд्рддिрдХ рейреж рд╕рдо्рдо рдлोрд░рдЬी рд╕ेрд╡ा рд▓िрдирдХा рд▓ाрдЧि рдЖрд╡рд╢्рдпрдХ рдкрд░्рдиे рд╕िрдо (рдпू рд╕िрдо) рдкрд░िрд╡рд░्рддрди рдиिःрд╢ुрд▓्рдХ рдЧрд░िрдПрдХो рдЫ । рдпो рд╕ेрд╡ा рдХрдо्рдкрдиीрдХा рдХाрдардоाрдбौ, рд▓рд▓िрддрдкुрд░, рднрдХ्рддрдкुрд░ рд░ рдХाрд╕्рдХी рдЬिрд▓्рд▓ाрдХा рдХाрдЙрди्рдЯрд░рдоाрд░्рдлрдд рдЙрдкрд▓рдм्рдз рд╣ुрдиे рдЯेрд▓िрдХрдорд▓े рдЬрдиाрдПрдХो рдЫ । рд╕ाрдеै рд╡िрднिрди्рди рдорд╣ोрдд्рд╕рд╡рдоा рд╕्рдеाрдкिрдд рд╕्рдЯрд▓рдмाрдЯ рдкрдиि рд▓िрди рд╕рдХिрдиे рдЫ ।

рдПрдбिрдПрд╕рдПрд▓/рдПрдлрдЯिрдЯिрдПрдЪ/рд╡ाрдЗрдо्рдпाрдХ्рд╕ рдЕрдлрд░

рдЕрд╕ोрдЬ резрез рджेрдЦि резрео рдЧрддेрднिрдд्рд░ рдЕрдирд▓िрдоिрдЯेрдб рд░ рднोрд▓ुрдо рдмेрд╕्рдб рдПрдбिрдПрд╕рдПрд▓ рдПрдХाрдЙрди्рдЯ, рд╡ाрдЗрдо्рдпाрдХ्рд╕рдХो рд╕рдордпाрд╡рдзि рд╕рдоाрдк्рдд рд╣ुрдиे рдЧ्рд░ाрд╣рдХрдХो рд╕рдордпाрд╡рдзि рдЕрд╕ोрдЬ резреп рд╕рдо्рдо рдердк рдЧрд░िрдПрдХो рдЫ ।
Source: Nagarik News

рд╕ाрдеै рдиेрдкाрд▓ рдЯेрд▓िрдХрдорд▓े рдЖрдЗ рдкी рдЯिрднी рдоोрдмाрдЗрд▓ рдПрдк्рд▓िрдХेрд╕рдирдоाрд░्рдлрдд рдиि:рд╢ुрд▓्рдХ рд╣ेрд░्рди рд╕рдХिрдиे рд╡्рдпрд╡рд╕्рдеा рдкрдиि рдЧрд░ेрдХो рдЫ। рдпो рдЕрдлрд░ рджрд╢ैрд╕рдо्рдо рд░рд╣рдиे рдЫ।

Mobile banner ad Top
Share:

Total Pageviews

Sponsor

Sponsor

ad300

Blog Archive