シナリオを考えてみましょう。AとBのように2つのAndroidアプリを作成しました。BはNFCタグをスキャンし、文字列「nfcservice」を保存し、その文字列をバイト配列に保存しました。たとえば、TEMP_MSGを16進数として保存しました。その後、その配列を文字列に変換してApp-Aに送信しました。App-Aで一致させようとしましたが、毎回失敗します。何が問題ですか?何か提案してもらえますか?
App-Bコード:
//nfcservice
byte[] TEMP_MSG = {(byte)0x6E, (byte)0x66, (byte)0x63, (byte)0x73, (byte)0x65,
(byte)0x72, (byte)0x76, (byte)0x69, (byte)0x63, (byte)0x65};
String nfcservicestring = new String(TEMP_MSG);
Intent intent = new Intent("com.android.apps.metromanager.MetroManagerActivity");
intent.putExtra("keyword", nfcservicestring);
startActivity(intent);
アプリ-コード:
public class MetroManagerActivity extends Activity
{
TextView myText;
String myString;
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_metro_manager);
Bundle bundle = getIntent().getExtras();
if(bundle!=null) {
myString = bundle.getString("keyword");
Toast.makeText(getApplicationContext(), myString, Toast.LENGTH_LONG).show();
if(myString.equals("nfcservice")) {
LinearLayout lView = new LinearLayout(this);
myText = new TextView(this);
myText.setText("Welcome");
lView.addView(myText);
setContentView(lView);
} else {
LinearLayout lView = new LinearLayout(this);
myText = new TextView(this);
myText.setText("Bye Bye");
lView.addView(myText);
setContentView(lView);
}
}
}
}