使用Intent.ACTION_SENDTO时在何处指定电话号码?

时间:2017-08-24 15:52:49

标签: android android-studio android-intent

here中,给出了以下示例:

def gaussian(x,a1,c1,w1,a2,w2,c2):
         g1=a1*np.exp(-(x-c1)**2/(2*w1**2))
         g2=a2*np.exp(-(x-c2)**2/(2*w2**2))
         return g1+g2

gmodel=Model(gaussian)
result=gmodel.fit(y=y,x=x,params...)

指定的目的地号码在哪里?

2 个答案:

答案 0 :(得分:1)

Uri uri = Uri.parse("smsto:xxxxxxxxxx");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri); 

答案 1 :(得分:0)

不是。这是该代码中的一个错误。 ACTION_SENDTO需要smsto:mailto: Uri

Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("smsto:123456"));

其中123456是所需的电话号码。