无法解析getstring的方法(java.lang.string)

时间:2017-04-11 05:40:11

标签: java android android-context getstring

我在使用2因素身份验证创建应用时遇到了一些麻烦。我决定使用twilio作为我的短信网关,并决定继续他们的教程。但是,在宣布发送短信的网址时,我遇到了这个问题。出于某种原因,尽管已经宣布了" mContext"

,但我收到了错误
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import android.content.Context;
import java.io.IOException;
import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.FormBody;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

public class MainActivity extends AppCompatActivity {

private EditText mTo;
private EditText mBody;
private Button mSend;
private OkHttpClient mClient = new OkHttpClient();
private Context mContext;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

mTo = (EditText) findViewById(R.id.txtNumber);
mBody = (EditText) findViewById(R.id.txtMessage);
mSend = (Button) findViewById(R.id.btnSend);
mSend.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        try {

   post(mContext.getString(Integer.parseInt("http://4a61510d.grok.io/sms")), 
 new  
   Callback(){

                @Override
                public void onFailure(Call call, IOException e) {
                    e.printStackTrace();
                }

                @Override
                public void onResponse(Call call, Response response) throws 
   IOException {
                    runOnUiThread(new Runnable() {
                        @Override
                        public void run() {
                            mTo.setText("");
                            mBody.setText("");
                            Toast.makeText(getApplicationContext(),"SMS 
 Sent!",Toast.LENGTH_SHORT).show();
                        }
                    });
                }
            });
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
});
mContext = getApplicationContext();
}
Call post(String url, Callback callback) throws IOException {
RequestBody formBody = new FormBody.Builder()
        .add("To", mTo.getText().toString())
        .add("Body", mBody.getText().toString())
        .build();
Request request = new Request.Builder()
        .url(url)
        .post(formBody)
        .build();
Call response = mClient.newCall(request);
Response.**enqueue**(callback);
return response;
}}

我的build.gradle

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', 
{
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.squareup.okhttp3:okhttp:3.6.0'

和我的清单xml

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

<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/AppTheme">
<activity android:name=".MainActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

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

这就是我目前如何在错误仍然存​​在的情况下改变它

post(mContext.getString("http://4a61510d.ngrok.10/sms"), new Callback(){

3 个答案:

答案 0 :(得分:0)

尝试以下方式

post("http://4a61510d.grok.io/sms", new callback....

删除mContext.getString()&amp; Integer.parseInt(..)方法。因为你没有使用任何资源

答案 1 :(得分:0)

您在此行中遇到错误

mContext.getString(Integer.parseInt("http://4a61510d.grok.io/sms")

Integer.parseInt()仅用于解析int中的值,并且您正尝试将字符串解析为int

答案 2 :(得分:0)

使用

mContext = this;

在onCreate()方法中。