我在这方面花了几个小时,但我几乎没有取得任何进展。我问了一个类似的问题,但超过2小时,仍然没有成功。所以我会问这个并尽可能具体。我已经花了大约三个小时,所以请不要把我写下来。
我想同时显示文本和一个 ToggleButton。我可以显示一个或另一个,但不能同时显示。请帮忙!这是我的代码:
public class Counter extends Activity {
private int count = 5000;
private int hiCount = 0;
private boolean capCount = false;
@Override
protected void onCreate(Bundle instCounter) {
super.onCreate(instCounter);
setContentView(R.layout.activity_counter);
TextView tv = new TextView(this);
tv.setTextSize(250);
if (count < 10000 && capCount == false) {
tv.setText(Integer.toString(count));
} else {
capCount = true;
if (count >= 10000) {
hiCount += 10;
count -= 10000;
}
if (hiCount < 100) {
tv.setText(hiCount + "k+" + count);
} else {
tv.setText("Over\n100k");
}
}
tv.setGravity(Gravity.CENTER);
setContentView(tv);
// ToggleButton btnPause = new ToggleButton(this);
// if (btnPause == buttonOn) {
// Intent pause = new Intent(this, Pause.class);
// startActivity(pause);
// }
}
public void pauseCounter(View view) {
Intent pause = new Intent(this, Pause.class);
startActivity(pause);
}
// // Show the Up button in the action bar.
// getActionBar().setDisplayHomeAsUpEnabled(true);
}
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Counter" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
<ToggleButton
android:id="@+id/toggleButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="ToggleButton" />
</RelativeLayout>