0

我在这个项目中有一个计数器,它全部工作,但我试图在屏幕底部放置另一个计数器,它会做同样的事情,但会在另一个计数上工作。所以会有两个计数器计数不同,但我无法让它工作。

xml代码:

<TextView
    android:id="@+id/TextViewCount"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world" />

<Button
    android:id="@+id/ButtonCount"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/TextViewCount"
    android:layout_alignRight="@+id/TextViewCount"
    android:layout_marginBottom="22dp"
    android:text="Count" />

主要代码:

package com.example.counter;

import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;


public class MainActivity extends Activity {
 // Private member field to keep track of the count
 private static int mCount = 0;

private TextView countTextView;
private Button countButton;
public static final String PREFS_NAME = "com.example.myApp.mCount";
private SharedPreferences settings = null;
private SharedPreferences.Editor editor = null;

    /** ADD THIS METHOD **/
    @Override
    public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);  
      setContentView(R.layout.main);
      countTextView = (TextView) findViewById(R.id.TextViewCount);
      countButton = (Button) findViewById(R.id.ButtonCount);

      countButton.setOnClickListener(new View.OnClickListener() {
          public void onClick(View v) {
              mCount++;
              countTextView.setText("Count: " + mCount);
              editor = settings.edit(); 
              editor.putInt("mCount", mCount);
              editor.commit();
          }
      });
    settings = getSharedPreferences(PREFS_NAME, MODE_PRIVATE);


     }

    @Override
    public void onPause() {
      super.onPause();  
    }

    @Override
    public void onResume() {
      super.onResume();  
      mCount = settings.getInt("mCount", 0);
      countTextView.setText("Count: " + mCount);
    }
    }
4

1 回答 1

0

您需要线程来执行此任务,每个计数器必须在单独的线程中运行。

做这样的事情:

Thread t = new Thread(new Runnable(){

   public void run() {
      Thread.sleep(1000);
      counter++;
   }
});
t.start();

或使用 AsyncTask

更新:

制作另一个计数器和两个线程变量:

private static int mCount2 = 0;
private static Thread mT1, mT2;

那么你需要一个方法,像这样:

private void startCounter(Thread t, counter) {
   t = new Thread(new Runnable(){

      public void run() {
         while(true) {
            Thread.sleep(1000);
            counter++;
         }
      }
   });
t.start();
}

您可以在 onclick-method 中为每个带有计数器的线程调用此方法,然后您只需在 onPause 方法中停止线程:

@Override
public void onPause() {
  super.onPause();  
  mT1.stop();
  mT2.stop();
}

也许您需要 if 子句来测试线程是否正在运行。

于 2013-02-15T11:50:48.863 回答