Monday, 22 July 2019

Android Make A New Phone Call, Email, Text SMS, Whatsapp SMS, Open Browser

1) Add This In Manifest.xml


 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" /> 


Create a new folder name anim in res folder
Animation Files in anim folder


one.xml


<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="900"
    android:startOffset="500"
    android:interpolator="@android:anim/accelerate_interpolator"
    >

    <translate
        android:fromYDelta="200"
        android:toYDelta="1"
        />

    <alpha
        android:fromAlpha="0.0"
        android:toAlpha="1.0"
        />

</set>

two.xml


<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="800"
    android:startOffset="500"
    android:interpolator="@android:anim/accelerate_interpolator"
    >

    <translate
        android:fromYDelta="200"
        android:toYDelta="0"
        />

    <alpha
        android:fromAlpha="0.0"
        android:toAlpha="1.0"
        />

</set>

three.xml


<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="900"
    android:startOffset="500"
    android:interpolator="@android:anim/accelerate_interpolator"
    >

    <translate
        android:fromXDelta="200"
        android:toXDelta="1"
        />

    <alpha
        android:fromAlpha="0.0"
        android:toAlpha="1.0"
        />

</set>


Activity Files


Splash.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:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    android:background="#35F9BD"

    android:gravity="center"

    tools:context=".Splash">





    <ImageView

        android:id="@+id/spashLogo"

        android:layout_width="300dp"

        android:layout_height="300dp"

        android:src="@drawable/logo"/>



    <TextView

        android:id="@+id/tvWelcome"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="Welcome"

        android:textSize="35sp"

        android:textStyle="bold"

        android:textColor="@android:color/holo_orange_dark"/>



</LinearLayout>


Splash.java


public class Splash extends AppCompatActivity {

    ImageView spashLogo;
    TextView tvWelcome;
    Animation one, two;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash);

        spashLogo = (ImageView) findViewById(R.id.spashLogo);
        tvWelcome = (TextView) findViewById(R.id.tvWelcome);
        one = AnimationUtils.loadAnimation(this, R.anim.one);
        two = AnimationUtils.loadAnimation(this, R.anim.two);

        spashLogo.startAnimation(one);
        tvWelcome.startAnimation(two);


        new Handler().postDelayed(new Runnable() {

            @Override

            public void run() {

                Intent i = new Intent(Splash.this, MainActivity.class);

                startActivity(i);

                finish();

            }

        }, 3*1000);


    }
}

MainActivity.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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#F9FBFF"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <View
            android:layout_width="match_parent"
            android:layout_height="230dp"
            android:background="@drawable/bgheader"
            app:layout_constraintEnd_toEndOf="parent" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Home"
            android:textSize="25sp"
            android:textStyle="bold"
            android:textColor="@android:color/white"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="10dp"/>
    </RelativeLayout>



    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="182dp"
        android:layout_marginStart="16dp"
        android:layout_marginEnd="16dp"
        android:background="@drawable/bgmenus"
        android:orientation="vertical"
        android:layout_marginTop="-150dp">

        <TextView
            android:id="@+id/mainmenus"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:layout_marginTop="16dp"
            android:layout_marginBottom="12dp"
            android:text="Main Menus"
            android:textColor="#818181"
            android:textSize="16sp" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:weightSum="4">

            <LinearLayout
                android:id="@+id/youtube"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:orientation="vertical"
                android:onClick="Youtube">

                <ImageView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_marginBottom="8dp"
                    android:src="@drawable/youtube" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Youtube"
                    android:textColor="#172646"
                    android:textSize="16sp" />

            </LinearLayout>

            <LinearLayout
                android:id="@+id/instagram"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:orientation="vertical"
                android:onClick="Instagram">

                <ImageView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_marginBottom="8dp"
                    android:src="@drawable/instagram" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Instagram"
                    android:textColor="#172646"
                    android:textSize="16sp" />

            </LinearLayout>

            <LinearLayout
                android:id="@+id/linkedin"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:orientation="vertical"
                android:onClick="Linked">

                <ImageView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_marginBottom="8dp"
                    android:src="@drawable/linkid" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="LinkedIn"
                    android:textColor="#172646"
                    android:textSize="16sp" />

            </LinearLayout>

            <LinearLayout
                android:id="@+id/twitter"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:orientation="vertical"
                android:onClick="Twitter">

                <ImageView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_marginBottom="8dp"
                    android:src="@drawable/twitter" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="twitter"
                    android:textColor="#172646"
                    android:textSize="16sp" />

            </LinearLayout>

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:id="@+id/layoutOne">

        <LinearLayout

                android:layout_width="1.1in"
                android:layout_height="182dp"
                android:layout_marginStart="16dp"
                android:layout_marginEnd="16dp"
                android:background="@drawable/bgmenus"
                android:gravity="center"
                android:orientation="vertical"
                android:id="@+id/call"
                android:onClick="call">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@mipmap/ic_launcher_round"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Open Call"
                android:textColor="@android:color/black"
                android:textSize="20sp" />



        </LinearLayout>

        <LinearLayout

                android:layout_width="1.1in"
                android:layout_height="182dp"
                android:background="@drawable/bgmenus"
                android:gravity="center"
                android:orientation="vertical"
                android:id="@+id/mail"
                android:onClick="mail">

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@mipmap/ic_launcher_round"/>

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Open Gmail"
                    android:textColor="@android:color/black"
                    android:textSize="20sp"/>



            </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:id="@+id/layoutTwo">

        <LinearLayout

            android:layout_width="1.1in"
            android:layout_height="182dp"
            android:layout_marginStart="16dp"
            android:layout_marginEnd="16dp"
            android:background="@drawable/bgmenus"
            android:gravity="center"
            android:orientation="vertical"
            android:id="@+id/whatsapp"
            android:onClick="whatsapp">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@mipmap/ic_launcher_round"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Send Whatsapp"
                android:textColor="@android:color/black"
                android:textSize="20sp"/>



        </LinearLayout>

        <LinearLayout

            android:layout_width="1.1in"
            android:layout_height="182dp"
            android:background="@drawable/bgmenus"
            android:gravity="center"
            android:orientation="vertical"
            android:id="@+id/textsms"
            android:onClick="textsms">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@mipmap/ic_launcher_round"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Send Text SMS"
                android:textColor="@android:color/black"
                android:textSize="20sp"/>



        </LinearLayout>
    </LinearLayout>


</LinearLayout>


MainActivity.java


public class MainActivity extends AppCompatActivity {

    LinearLayout youtube, instagram, linkedin, twitter, layoutOne, layoutTwo;
    Animation three;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        youtube = (LinearLayout) findViewById(R.id.youtube);
        instagram = (LinearLayout) findViewById(R.id.instagram);
        linkedin = (LinearLayout) findViewById(R.id.linkedin);
        twitter = (LinearLayout) findViewById(R.id.twitter);
        layoutOne = (LinearLayout) findViewById(R.id.layoutOne);
        layoutTwo = (LinearLayout) findViewById(R.id.layoutTwo);

        three = AnimationUtils.loadAnimation(this, R.anim.three);

        youtube.startAnimation(three);
        instagram.startAnimation(three);
        linkedin.startAnimation(three);
        twitter.startAnimation(three);
        layoutOne.startAnimation(three);
        layoutTwo.startAnimation(three);




    }

    //I Add OnClick Method In XML File
    public void Youtube(View V){
        String url = "https://www.youtube.com";
        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setData(Uri.parse(url));
        startActivity(i);
    }

    public void Instagram(View V){
        String url = "https://www.instagram.com";
        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setData(Uri.parse(url));
        startActivity(i);
    }

    public void Linked(View V){
        String url = "/https://in.linkedin.com/";
        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setData(Uri.parse(url));
        startActivity(i);
    }

    public void Twitter(View v){
        String url = "https://twitter.com";
        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setData(Uri.parse(url));
        startActivity(i);
    }

    public void call(View view){
        int permissionCheck = ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.CALL_PHONE);
        if (permissionCheck != PackageManager.PERMISSION_GRANTED) {
            ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.CALL_PHONE}, 1);
        } else {
            Intent callIntent2 = new Intent(Intent.ACTION_CALL);

            callIntent2.setData(Uri.parse("tel:" + "MOBILE_NUMBER"));//change the number

            startActivity(callIntent2);
        }
    }

    public void mail(View view){
        Intent intent = new Intent (Intent.ACTION_VIEW , Uri.parse("mailto:" + "YOUR_MAIL_ID"));
        startActivity(intent);
    }

    public void whatsapp(View view){

        boolean isWhatsappInstalled = whatsappInstalledOrNot("com.whatsapp");
        if (isWhatsappInstalled) {

            Intent sendIntent = new Intent("android.intent.action.MAIN");
            sendIntent.setComponent(new ComponentName("com.whatsapp", "com.whatsapp.Conversation"));
            sendIntent.putExtra("jid", PhoneNumberUtils.stripSeparators("8689852249") + "@s.whatsapp.net");//phone number without "+" prefix

            startActivity(sendIntent);
        } else {
            Uri uri = Uri.parse("market://details?id=com.whatsapp");
            Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
            Toast.makeText(MainActivity.this, "WhatsApp not Installed", Toast.LENGTH_SHORT).show();
            startActivity(goToMarket);
        }
    }
    private boolean whatsappInstalledOrNot(String uri) {
        PackageManager pm = getPackageManager();
        boolean app_installed = false;
        try {
            pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES);
            app_installed = true;
        } catch (PackageManager.NameNotFoundException e) {
            app_installed = false;
        }
        return app_installed;
    }

    public void textsms(View view){
        Uri uri = Uri.parse("smsto:8689852249");
        Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
        intent.putExtra("sms_body", "The SMS text");
        startActivity(intent);
    }

}

Monday, 15 July 2019

Android Material Collapsing Toolbar Layout # Part 2



1) activity_main.xml


<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="exitUntilCollapsed|scroll"
            app:contentScrim="?attr/colorPrimary"
            app:title="Toolbar Title"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp"
            android:background="@drawable/toolbar">


            <android.support.v7.widget.Toolbar
                android:layout_width="match_parent"
                android:layout_height="?actionBarSize"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>


    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>


    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>


2) Create card_layout.cml file on res/layout folder


<?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="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_layout"
    android:orientation="vertical">

    <!--Todo: CardView-->

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardCornerRadius="12dp"
        app:cardElevation="6dp"
        app:cardMaxElevation="6dp"
        app:contentPadding="25dp"
        app:cardBackgroundColor="@android:color/white"
        android:layout_margin="10dp"
        >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:id="@+id/card_img"
                android:padding="10dp"
                android:src="@drawable/home_icon"/>

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:id="@+id/card_title"
                android:text="Category Name"
                android:textSize="18dp"
                android:textColor="@android:color/black"
                android:textStyle="bold"/>

        </LinearLayout>



    </android.support.v7.widget.CardView>
</LinearLayout>


3) Create Cards.java class file and past this code


public class Cards {

    Integer Img;
    String category;

    public Cards(Integer img, String category) {
        Img = img;
        this.category = category;
    }

    public Integer getImg() {
        return Img;
    }

    public String getCategory() {
        return category;
    }
}


4) Create CardsAdapter.java class file and past this code


/*Todo: Recyclerview Adapter*/
public class CardsAdapter extends RecyclerView.Adapter<CardsAdapter.ViewHolder>
{

    /*Todo: Recyclerview Adapter class*/
    List<Cards> list;
    Context context;

    public CardsAdapter(List<Cards> list, Context context) {
        this.list = list;
        this.context = context;
    }

    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.card_layout, parent, false);

        final ViewHolder viewHolder = new ViewHolder(view);

        /*Todo: adding Click Events Of Each Menu On Dashboard by title*/
        
        viewHolder.card_layout.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                Toast.makeText(context, list.get(viewHolder.getAdapterPosition()).getCategory(), Toast.LENGTH_SHORT).show();
            }
        });

        return viewHolder;
    }

    @Override
    public void onBindViewHolder(ViewHolder holder, int position) {
        Cards Cards = list.get(position);
        final int img = Cards.getImg();
        final String categiry = Cards.getCategory();

        holder.card_img.setImageResource(img);
        holder.card_title.setText(categiry);

    }

    @Override
    public int getItemCount() {
        return list.size();
    }

    public class ViewHolder extends RecyclerView.ViewHolder{

        ImageView card_img;
        TextView card_title;
        LinearLayout card_layout;
        public ViewHolder(View itemView) {
            super(itemView);

            card_img = (ImageView)itemView.findViewById(R.id.card_img);
            card_title = (TextView) itemView.findViewById(R.id.card_title);
            card_layout = (LinearLayout) itemView.findViewById(R.id.card_layout);

        }
    }
}

5) MainActivity.java


import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;

import java.util.ArrayList;
import java.util.List;

public class MainActivity extends AppCompatActivity {

    private RecyclerView recyclerView;
    private RecyclerView.Adapter adapter;
    private List<Cards> Cardss;
    private RecyclerView.LayoutManager mLayoutManager;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        recyclerView = (RecyclerView) findViewById(R.id.recyclerview);
        recyclerView.setHasFixedSize(true);
        mLayoutManager = new GridLayoutManager(MainActivity.this,2);
        recyclerView.setLayoutManager(mLayoutManager);
        Cardss = new ArrayList<>();
        loaddata();

    }
    private void loaddata()
    {

        String[] nameArray = {
                "Home",
                "Taxi",
                "Boat",
                "Train",
                "Navigation",
                "Stop"
        };

        int[] drawableArray = {
                R.drawable.home_icon,
                R.drawable.taxi_icon,
                R.drawable.boat_icon,
                R.drawable.train_icon,
                R.drawable.navigation_icon,
                R.drawable.stop_icon
        };

        for (int i = 0; i < nameArray.length; i++) {
            Cardss.add(new Cards(
                    drawableArray[i],
                    nameArray[i]
            ));
        }

        adapter = new CardsAdapter(Cardss, MainActivity.this);
        recyclerView.setAdapter(adapter);
    }

Android Material Collapsing Toolbar Layout # Part 1



1) MainActivity.xml


I highlight the inportant attributes in xml file

<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="300dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="exitUntilCollapsed|scroll"
            app:contentScrim="?attr/colorPrimary"
            app:title="Toolbar Title"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp"
            android:background="@drawable/toolbar">


            <android.support.v7.widget.Toolbar
                android:layout_width="match_parent"
                android:layout_height="?actionBarSize"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

</android.support.design.widget.CoordinatorLayout>


2) No Need To Code In Java

Android Studio - Get Current Latitude And Longitude

1. Add this dependencies in your gradle file     implementation 'com.google.android.gms:play-services-location:18.0.0' 2. Add this p...