如何将呼叫按钮更改为链接按钮

时间:2013-10-15 06:48:14

标签: android

我只是Android的新手, 如何更改通话按钮成为Twitter / Facebook或链接网站的链接按钮

 // ------------ 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";

1 个答案:

答案 0 :(得分:0)

你需要更新......

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);