これは簡単な質問です..しかし、出力が得られません。説明: 私の活動では、3 つのボタン A、B、C があります。同じアクティビティで、1つのtextview{textViewPatientType}もあります。ボタン(A)をオンクリックすると、textview(textViewPatientType)のテキストをAとして設定する必要があります。ボタン(B)をオンクリックすると、textview(textViewPatientType)のテキストをBとして設定する必要があります。
私の活動はこのように示しています
-------------------------------------------------
buton1-->onclick A| textview(A)
buton2 |
buton3 |
-------------------------------------------------
私はこのようにしようとしますが、トーストとして機能します..オンクリックすると(A)、それが来て消えます..だから助けてください..事前に感謝します。
これが私のコードです。
button1 = (Button) findViewById(R.id.button1);
button2 = (Button) findViewById(R.id.button2);
button3 = (Button) findViewById(R.id.button3);
textViewPatientType = (TextView) findViewById(R.id.textViewPatientType);
buttonInPatient.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
try {
**textViewPatientType.setText("InPatient");**
ServiceManager.callPatientService(WorkListView.this, "IP", user, pd);
} catch (Exception e) {
e.printStackTrace();
}
Toast.makeText(WorkListView.this, getResources().getString(R.string.inPatient), Toast.LENGTH_SHORT).show();
}
});