gpt4 book ai didi

java - 无法从 View MainActivity.java 类型对非静态方法 invalidate() 进行静态引用

转载 作者:行者123 更新时间:2023-12-01 18:43:52 26 4
gpt4 key购买 nike

我在 Eclipse 中遇到错误,指出:“无法从 View MainActivity.java 类型中对非静态方法 invalidate() 进行静态引用”,并且我不确定如何解决此问题。如何使 invalidate() 静态或使 View 非静态?

来源:

public class MainActivity extends Activity {
private TextView textView;
private Handler handler;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = (TextView) findViewById(R.id.TextView01);
handler = new Handler();
}

private class DownloadWebPageTask extends AsyncTask<String, Void, String> {
@Override
protected String doInBackground(String... urls) {
// perform HTTP client operation
}

@Override
protected void onPostExecute(final String title) {

handler.post(new Runnable() {
@Override
public void run() {
textView.setText(title);
View.invalidate();
}
});
}
}

public void onClick(View view) {
DownloadWebPageTask task = new DownloadWebPageTask();
task.execute(new String[] { "http://www.google.com" });

}
}

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<Button
android:id="@+id/readWebpage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onClick"
android:text="Load Webpage" >
</Button>

<TextView
android:id="@+id/TextView01"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Placeholder" >
</TextView>

</LinearLayout>

第一个解决方案尝试:

    public class MainActivity extends Activity {
private TextView textView;
// String response;
public interface Callback {
void onModifiedTextView(String value);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = (TextView) findViewById(R.id.TextView01);
}

public void onModifiedTextView(final String title) {
runOnUiThread(new Runnable() {
public void run() {
textView.setText(title);
textView.invalidate(); // not even necessary
}
});
}

public class DownloadWebPageTask extends AsyncTask<String, Void, String> {
public DownloadWebPageTask(MainActivity mainActivity) {
this.callback = mainActivity;
}

private MainActivity callback;

public DownloadWebPageTask() {
// TODO Auto-generated constructor stub
}

public DownloadWebPageTask(TextView textView) {
// TODO Auto-generated constructor stub
}

@Override
protected String doInBackground(String... urls) {
String response = "";

for (String url : urls) {
DefaultHttpClient client = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(url);
try {
Document doc = Jsoup.connect("http://google.com")
.userAgent("Mozilla")
.get();
// get page title
String title = doc.title();
System.out.println("title : " + title);

// get all links
Elements links = doc.select("a[href]");
for (Element link : links) {

// get the value from href attribute
System.out.println("\nlink : " + link.attr("href"));
System.out.println("text : " + link.text());

}

} catch (IOException e) {
e.printStackTrace();
}


}
callback.onModifiedTextView(response);
return response;
}

@Override
protected void onPostExecute(final String title) {
callback.onModifiedTextView(title);
}
}

public void onClick(View view) {

DownloadWebPageTask task = new DownloadWebPageTask(this);
task.execute(new String[] { "http://www.google.com" });
}
}

最佳答案

View 是一个类。 invalidate() 是一个实例方法。您需要在实例上调用它。

但是,you need to perform UI modifications on the UI thread 。我会让您的 Activity 类使用类似

的方法实现 Callback 接口(interface)
public interface Callback {
void onModifiedTextView(String value);
}

然后你的类将其实现为

public void onModifiedTextView(final String title) {
runOnUiThread(new Runnable() {
public void run() {
textView.setText(title);
textView.invalidate(); // not even necessary
}
});
}

然后将其传递给DownloadWebPageTask。换句话说,创建一个接受 Callback 实例的构造函数

public DownloadWebPageTask(Callback callback) {
this.callback = callback;
}

private Callback callback;

...

protected void onPostExecute(final String title) {
callback.onModifiedTextView(title);
}

UI 修改需要在 UI 线程中完成。这就是为什么您需要 runOnUiThread() 方法。

关于java - 无法从 View MainActivity.java 类型对非静态方法 invalidate() 进行静态引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18743597/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com