インテント(ディレクトリピッカー)の終了後にテキストを変更するテキストビューを取得しましたが、機能しません。コードは次のとおりです。
text = (TextView) findViewById(R.id.choose3);
text.setText(globalconstant.path);
インテントがパスを返すときにテキストを変更する必要があります。
private void addListenerOnButton() {
choose_button = (Button) findViewById(R.id.button1);
choose_button.setEnabled(true);
choose_button.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
// DirectoryPicker.START_DIR = "/mnt/";
Intent intent = new Intent(settings.this, DirectoryPicker.class);
startActivityForResult(intent, DirectoryPicker.PICK_DIRECTORY);
// text.setText(globalconstant.path);
text = (TextView) findViewById(R.id.choose3);
text.setText(globalconstant.path);
;
}
});
}
どうしたの?私を助けてください!どうもありがとうございました