-1
예 버튼으로 전화를 걸고 싶지 않은 대화 상자를 만들고 싶습니다. 버튼없이 대화 상자를 취소합니다. 하지만 대화 상자의 텍스트보기에서 "전화 : 번호"라는 확인 대화 상자가 필요합니다. 주 활동에서 사용자가이 번호를 사용하지 않았으므로이 대화 상자를 가져올 수 없습니다. 어떻게해야합니까? 의도와 공유 환경 설정으로 시도했지만 모두 헛된 것입니다. 제안 해줘.대화 내용으로 활동 내용을 가져옵니다.
다음 활동 코드에 다음 코드를 작성했습니다.
package com.example.deepak.phone_call;
import android.Manifest;
import android.app.Activity;
import android.app.Dialog;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.support.v4.app.ActivityCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity implements View.OnClickListener {
Button b;
EditText edittext1;
SharedPreferences sharedPreferences;
SharedPreferences.Editor edit;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b = (Button) findViewById(R.id.button);
b.setOnClickListener(this);
edittext1=(EditText)findViewById(R.id.edittext1);
String number=edittext1.getText().toString();
sharedPreferences = getSharedPreferences("mydata",MODE_PRIVATE);
edit= sharedPreferences.edit();
edit.putString("s1",number);
edit.commit();
// Intent intent = new Intent(this, phone_call.class);
// intent.putExtra("s1",number);
}
private void phoneDialog(){
Dialog dialog = new Dialog(MainActivity.this);
dialog.setContentView(R.layout.phone_call);
dialog.setTitle("Call:");
dialog.show();
}
@Override
public void onClick(View v) {
phoneDialog();
}
}
다음 코드는 Dialog를 설정 한 다른 클래스의 코드입니다.
import android.app.Activity;
import android.app.Dialog;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
/**
* Created by Deepak on 7/5/2016.
*/
public class phone_call extends Activity implements View.OnClickListener {
Button button2,button3;
TextView editText;
SharedPreferences shredpreference;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.phone_call);
button2= (Button) findViewById(R.id.button2);
button2.setOnClickListener(this);
button3= (Button) findViewById(R.id.button3);
button3.setOnClickListener(this);
editText = (TextView) findViewById(R.id.editText);
//Intent intent = getIntent();
//String s1= intent.getStringExtra("s1");
shredpreference = getSharedPreferences("mydata",0);
String s1= shredpreference.getString("s1","null");
editText.setText("Call"+ s1+":");
}
@Override
public void onClick(View v) {
//Intent intent = getIntent();
// String s1= intent.getStringExtra("s1");
shredpreference = getSharedPreferences("mydata",0);
String s1= shredpreference.getString("s1","null");
switch (v.getId()) {
case R.id.button2:
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" +s1));//change the number
try{
startActivity(callIntent);
}
catch (android.content.ActivityNotFoundException ex){
Toast.makeText(getApplicationContext(),"yourActivity is not founded",Toast.LENGTH_SHORT).show();
}
break;
case R.id.button3:
finishActivity(100);
break;
}
}
}