我在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" });
}
}
答案 0 :(得分:4)
View
是一个班级。 invalidate()
是一种实例方法。您需要在实例上调用它。
然而,you need to perform UI modifications on the UI thread。我会让你的Activity
类使用类似
Callback
接口
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()
方法的原因。
答案 1 :(得分:0)
查看Java tutorial on Instance and Class Methods,详细解释了这一点。
另请参阅Another "Cannot make static reference..." Question,Java Error: Cannot make a static reference to the non-static method。
答案 2 :(得分:0)
invalidate()是VIEW类中的非静态方法。您需要在创建View或其任何子项的任何实例后调用该方法。在这种情况下,您可以尝试使活动的textView或root视图无效。