从另一个活动android的按钮setText
我遇到了问题,我想单击列表,调用一个新的活动并将该按钮重命名为另一个名称。
我尝试了几件事,没有任何工作,有人可以帮我吗?
我的课EditarTimes
private AdapterView.OnItemClickListener selecionarTime = new AdapterView.OnItemClickListener() { public void onItemClick(AdapterView arg0, View arg1, int pos, long id) { t = times.get(pos); CadastroTimes cad = new CadastroTimes(); CadastroTimes.salvar.setText("Alterar"); Intent intent = new Intent(EditarTimes.this, CadastroTimes.class); startActivity(intent); } };
public class CadastroTimes extends AppCompatActivity { private Time t; private timeDatabase db; private EditText edID; private EditText edNome; public Button salvar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_cadastro_times); edID = (EditText) findViewById(R.id.edID); edNome = (EditText) findViewById(R.id.edNome); db = new timeDatabase(getApplicationContext()); salvar = (Button) findViewById(R.id.btnCadastrar); salvar.setText("Cadastrar"); String newString; if (savedInstanceState == null) { Bundle extras = getIntent().getExtras(); if(extras == null) { newString= null; } else { newString= extras.getString("Alterar"); } } else { newString= (String) savedInstanceState.getSerializable("Alterar"); } //button in CadastroTimes activity to have that String as text System.out.println(newString + " AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"); salvar.setText(newString); } public void salvarTime(View v) { t = new Time(); t.setNome(edNome.getText().toString()); if (salvar.getText().equals("Alterar")) { db.atualizar(t); exibirMensagem("Time atualizado com sucesso!"); } else { db.salvar(t); exibirMensagem("Time cadastrado com sucesso!"); } Intent intent = new Intent(this, EditarTimes.class); startActivity(intent); } private void limparDados() { edID.setText(""); edNome.setText(""); edNome.requestFocus(); } private void exibirMensagem(String msg) { Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_LONG).show(); } }
public class EditarTimes extends AppCompatActivity { private Time t; private List times; private timeDatabase db; private ListView lvTimes; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_editar_times); lvTimes = (ListView) findViewById(R.id.lvTimes); lvTimes.setOnItemClickListener(selecionarTime); lvTimes.setOnItemLongClickListener(excluirTime); times = new ArrayList(); db = new timeDatabase(getApplicationContext()); atualizarLista(); } private void excluirTime(final int idTime) { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("Excluir time?") .setIcon(android.R.drawable.ic_dialog_alert) .setMessage("Deseja excluir esse time?") .setCancelable(false) .setPositiveButton(getString(R.string.sim), new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { if (db.deletar(idTime)) { atualizarLista(); exibirMensagem(getString(R.string.msgExclusao)); } else { exibirMensagem(getString(R.string.msgFalhaExclusao)); } } }) .setNegativeButton(getString(R.string.nao), new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.cancel(); } }); builder.create(); builder.show(); atualizarLista(); } private void atualizarLista() { times = db.listAll(); if (times != null) { if (times.size() > 0) { TimeListAdapter tla = new TimeListAdapter( getApplicationContext(), times); lvTimes.setAdapter(tla); } } } private AdapterView.OnItemClickListener selecionarTime = new AdapterView.OnItemClickListener() { public void onItemClick(AdapterView arg0, View arg1, int pos, long id) { t = times.get(pos); Intent intent = new Intent(EditarTimes.this, CadastroTimes.class); String strName = "Alterar"; intent.putExtra("Alterar", strName); startActivity(intent); //preecherDados(t); } }; private AdapterView.OnItemLongClickListener excluirTime = new AdapterView.OnItemLongClickListener() { public boolean onItemLongClick(AdapterView arg0, View arg1, int pos, long arg3) { excluirTime(times.get(pos).getId()); return true; } }; /*private void preecherDados(Time time) { edID.setText(String.valueOf(time.getId())); edNome.setText(time.getNome()); }*/ private void exibirMensagem(String msg) { Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_LONG).show(); } public void telaCadastrar(View view) { Intent intent = new Intent(this, CadastroTimes.class); startActivity(intent); } public void botaoSair(View view) { Intent intent = new Intent(this, TelaInicial.class); startActivity(intent); } }
您可以将按钮标题传递给CadastroTimes
Intent intent = new Intent(EditarTimes.this, CadastroTimes.class);
intent.putExtra("buttontxt","Changed Text");
startActivity(intent);
然后在CadastroTimes.java
中将按钮的文本设置为您传递的新值。 代码如下所示:
button = (Button)findViewById(R.id.button); // This is your reference from the xml. button is my name, you might have your own id given already.
Bundle extras = getIntent().getExtras();
String value = ""; // You can do it in better and cleaner way
if (extras != null) {
value = extras.getString("buttontxt");
}
button.setText(value);
请记住在setContentView
之后在onCreate
执行此操作
//From Activity
Intent intent = new Intent(EditarTimes.this, CadastroTimes.class);
intent.pueExtra("chang_tag", "text to change");
startActivity(intent)
//To Activity
public void onCreate(..){
Button changeButton = (Button)findViewById(R.id.your_button);
// Button to set received text
Intent intent = getIntent();
if(null != intent) {
String changeText = intent.getStringExtra("chang_tag", "");
// Extracting sent text from intent
(!TextUtils.isEmpty(changeText )){
changeButton.setText(changeText);
// Setting received text on Button
}
}
}
对不起,我有点晚了。 不过,我希望能帮到你。
要更改按钮文字: