0

私はAndroidの初心者ですが、呼び出しボタンをtwitter/facebookまたはリンクWebサイトへのリンクボタンに変更する方法

 // ------------ Call button---------------------
        private void call() {
            try {
                Intent callIntent = new Intent(Intent.ACTION_CALL);
                callIntent.setData(Uri.parse("tel:"+Info.phoneNumber+""));
                startActivity(callIntent);
            } catch (ActivityNotFoundException activityException) {

            }
        }

        public void btnPhone(View v) {

            try {

                call();

            } catch (Exception e) {
                // TODO: handle exception
            }

        }

主要

    <TableRow
        android:layout_width="0dip"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:gravity="center"
        android:onClick="btnPhone" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/call" />
    </TableRow>

情報

public static String phoneNumber = "+xxxxxx";
4

1 に答える 1