You are currently viewing URL in Android’s web browser

URL in Android’s web browser

Spread the love

Merhaba arkadaşlar  Android Studio üzerinde bir button istemiş olduğumuz kaynak adres yönlendirmek istersek bu kod tam size göre

        Button buttongit = (Button)findViewById(R.id.btntikla);
        buttongit.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                Intent intentview = new Intent(Intent.ACTION_VIEW, Uri.parse("http://blog.orhanturk.com.tr/"));
                startActivity(intentview);
            }
        });

Bir yanıt yazın

This site uses Akismet to reduce spam. Learn how your comment data is processed.