我想用一个按钮和一个固定号码打电话

vvppvyoh  于 2021-07-09  发布在  Java
关注(0)|答案(3)|浏览(349)

我想用一个按钮打电话。电话号码应该在里面。但我的密码不起作用。谁能支持?
public class mainactivity扩展appcompatactivity{private button;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button button = (Button) findViewById(R.id.button);
}

public void onClickStart(View view) {
    button = findViewById(R.id.button);

    ((Button)findViewById(R.id.button)).setOnClickListener((View.OnClickListener) v -> {

        Intent callIntent = new Intent(Intent.ACTION_CALL);
        String phNum = "tel:" + "89261234567";
        callIntent.setData(Uri.parse(phNum));
        startActivity( callIntent) ;
    });

}

}

清单文件

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

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.GateApp">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
egmofgnx

egmofgnx1#

您的问题是,您从未将click侦听器分配给按钮,因为onclickstart从未被调用。你应该这样做

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button button = (Button) findViewById(R.id.button);
    button.setOnClickListener((View.OnClickListener) v -> {

        Intent callIntent = new Intent(Intent.ACTION_CALL);
        String phNum = "tel:" + "89261234567";
        callIntent.setData(Uri.parse(phNum));
        startActivity( callIntent) ;
    });
}

这样您就可以将click侦听器分配给按钮。在文档中您可以找到如何使用它。
这里是调用意图文档的链接

cqoc49vn

cqoc49vn2#

我想你可以把这个字符串<数据android:scheme=“电话”/>

c9x0cxw0

c9x0cxw03#

只需在onclicklistener中使用以下两行代码:

((Button)findViewById(R.id.button)).setOnClickListener((View.OnClickListener) v -> {
            String phNum = "tel:" + "89261234567";
            startActivity(new Intent(Intent.ACTION_DIAL, Uri.fromParts("tel", phNum, null)));
        });

相关问题