现在我正在研究Threads
,我的任务是制作一个计数器,该计数器将在TextView
的帮助下将0到9的数字加到Loader
。当然,我知道使用Loader
并不是最好的变体,但是我想了解它是如何工作的。
所以,我有以下代码:
package asus.example.com.exercise4;
import android.annotation.SuppressLint;
import android.content.Context;
import android.os.SystemClock;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.AsyncTaskLoader;
import android.support.v4.content.Loader;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class LoaderActivity extends AppCompatActivity {
private TextView counter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_threads);
Button startButton = findViewById(R.id.start_button);
Button cancelButton = findViewById(R.id.cancel_button);
startButton.setOnClickListener(listener);
cancelButton.setOnClickListener(listener);
counter = findViewById(R.id.counter);
}
private View.OnClickListener listener = new View.OnClickListener() {
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.start_button:
getSupportLoaderManager().initLoader(0, null, new LoaderClass());
break;
case R.id.cancel_button:
break;
}
}
};
@SuppressLint("StaticFieldLeak")
class AsyncTaskLoaderClass extends AsyncTaskLoader<Void>{
AsyncTaskLoaderClass(@NonNull Context context) {
super(context);
}
@Nullable
@Override
public Void loadInBackground() {
for (int i = 0; i<10;i++){
counter.setText(i);
SystemClock.sleep(500);
}
return null;
}
}
private class LoaderClass implements LoaderManager.LoaderCallbacks<Void>{
@NonNull
@Override
public Loader<Void> onCreateLoader(int i, @Nullable Bundle bundle) {
return new LoaderActivity.AsyncTaskLoaderClass(LoaderActivity.this);
}
@SuppressLint("SetTextI18n")
@Override
public void onLoadFinished(@NonNull Loader<Void> loader, Void aVoid) {
counter.setText("Done!");
}
@Override
public void onLoaderReset(@NonNull Loader<Void> loader) {
}
}
}
运行项目时出现运行时错误:
java.lang.IllegalArgumentException: Object returned from onCreateLoader must not be a non-static inner member class: AsyncTaskLoaderClass{eed39bf id=0}
是的,我知道这意味着AsyncTaskLoaderClass
应该在另一个文件中或是静态的,但是在这种情况下,我将没有机会向textview
添加文本。那么,我该如何解决这个问题?
UPD
我通过单击“开始”按钮的方式更改了代码:
case R.id.start_button:
Loader loader = getSupportLoaderManager().initLoader(0, null, LoaderActivity.this);
loader.forceLoad();
Log.i(TAG, "Button start clicked");
break;
现在每次循环中我都会遇到以下错误:
E/e.com.exercise: Invalid ID 0x00000009.
E/EventBus: Could not dispatch event: class asus.example.com.exercise4.LoaderActivity$MyAsyncTaskLoader$ProgressEvent to subscribing class class asus.example.com.exercise4.LoaderActivity
android.content.res.Resources$NotFoundException: String resource ID #0x9
UPD 2
最后通过以下方式解决了问题:
原是
counter.setText(i);
现在
counter.setText(""+i);
也许我不理解它为什么起作用,但是它起作用
答案 0 :(得分:1)
使Activity实现LoaderCallbacks。此外,加载程序还会在其onLoadFinished
回调中检索 一个特定值 ,并且它应返回检索(加载)的项目。
要更改加载程序正在加载的值,您应该使用新的参数捆绑包重新启动加载程序,并传入参数,以使其知道自己在做什么。
然后,您再次尝试在AsyncTask中创建类似“ publishProgress”的内容;加载程序无法立即执行此操作,而是需要某种“发送事件”的变体(如果您喜欢冒险,可以使用处理线程,但很可能是event bus,请参见implementation 'org.greenrobot:eventbus:3.1.1'
)。
TL; DR:为此使用EventBus。
public class LoaderActivity extends AppCompatActivity implements LoaderManager.LoaderCallbacks<Void> {
private TextView counter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_threads);
Button startButton = findViewById(R.id.start_button);
Button cancelButton = findViewById(R.id.cancel_button);
counter = findViewById(R.id.counter);
startButton.setOnClickListener((view) -> {
getSupportLoaderManager().initLoader(0, null, LoaderActivity.this);
});
cancelButton.setOnClickListener((view) -> {
// do nothing, apparently
});
EventBus.getDefault().register(this);
}
@Override
protected void onDestroy() {
EventBus.getDefault().unregister(this);
super.onDestroy();
}
@Subscribe(threadMode = ThreadMode.MAIN)
public void onLoaderProgressEvent(MyAsyncTaskLoader.ProgressEvent event) {
counter.setText("" + event.getNumber());
}
@NonNull
@Override
public Loader<Void> onCreateLoader(int i, @Nullable Bundle bundle) {
return new MyAsyncTaskLoader(LoaderActivity.this);
}
@SuppressLint("SetTextI18n")
@Override
public void onLoadFinished(@NonNull Loader<Void> loader, Void aVoid) {
counter.setText("Done!");
}
@Override
public void onLoaderReset(@NonNull Loader<Void> loader) {
}
public static class MyAsyncTaskLoader extends AsyncTaskLoader<Void> {
public static class ProgressEvent {
private final int number;
public ProgressEvent(int number) {
this.number = number;
}
public int getNumber() { return number; }
}
public MyAsyncTaskLoader(@NonNull Context context) {
super(context);
}
@Nullable
@Override
public Void loadInBackground() {
for (int i = 0; i<10;i++){
EventBus.getDefault().post(new ProgressEvent(i));
SystemClock.sleep(500);
}
return null;
}
}
}
答案 1 :(得分:0)
您正在使用AsyncTaskLoaderClass
类中的内部Activity
。内部类拥有外部类的引用。这意味着您的AsyncTaskLoaderClass
在某些情况下可能拥有Activity
引用。将您的内部类设为静态。
您有2个解决方案。将AsyncTaskLoaderClass
设为单独的类文件,或将AsyncTaskLoaderClass
设为静态类。
答案 2 :(得分:-2)
像这样public static TextView counter;