我开始使用 Android 应用程序,但我需要一些帮助。
我有一个 Textview 和两个按钮 +1 和 -1。当您按 +1 时,我的文本视图中应该有1
,而 -1 按钮则相反。我找不到我的错误。这是我的代码。
活动.java
package tbj.android.basketballstatistik;
public class MainActivity extends Activity implements OnClickListener {
TextView toPtGoalField;
Button plus;
Button minus;
String oper = "";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textview= (TextView) findViewById(R.id.textview);
plus= (Button) findViewById(R.id.plus);
minus= (Button) findViewById(R.id.minus);
plus.setOnClickListener(this);
minusinus.setOnClickListener(this);
public void onClick(View v) {
float textview= 0;
textview= Float.parseFloat(this.textview.getText().toString());
switch (v.getId()) {
case R.id.plus:
oper = "+";
textview= 1+textview;
textview.setText(1+ textview);
break;
case R.id.minus:
oper = "-";
textview= textview- 1;
break;
default:
break;
}
}
}
编辑 得到它与您的帮助一起使用此代码
public void onClick(View v) {
switch (v.getId()) {
case R.id.plus:
if (count == 0 || count == -1) {
count++;
textview.setText("" + count);
}
break;
case R.id.minus:
if (count == 0 || count == 1) {
count--;
textview.setText("" + count);
}
break;
default:
break;
}
}
}