我在将Java类文件与Android Studio中的布局资源文件连接时遇到问题。
我正在尝试创建一个应用程序,以便当我按下按钮时,它会解析网站。
然而,按下按钮显示没有反应。我有一个单独的Java类用于此按钮。
相反,当我将解析代码与主活动java类(包含自动创建的Android Studio导航抽屉)组合在一起时,按钮按预期工作。但是,如果我这样做,导航栏就会消失。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_lunch_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="ddalton.daltonapp.ParseMenu"
tools:showIn="@layout/app_bar_lunch_menu"
android:orientation="vertical">
<TextView
android:text="Parsed Text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tex1"
android:layout_weight="0.38" />
<Button
android:text="Parse"
android:layout_width="136dp"
android:layout_height="62dp"
android:id="@+id/but1" />
</LinearLayout>
这是我的布局代码,名为content_lunch_menu.xml
package ddalton.daltonapp;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
public class ParseMenu extends AppCompatActivity {
TextView texx;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.content_lunch_menu);
texx=(TextView)findViewById(R.id.tex1);
Button but=(Button) findViewById(R.id.but1);
but.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
System.out.println("parse button pressed");
new doit().execute();
}
});
}
public class doit extends AsyncTask<Void,Void,Void>{
String words;
@Override
protected Void doInBackground(Void... params) {
System.out.println("parsing");
try {
Document doc = Jsoup.connect("http://daltonschool.kr/homeeng/04schoollife/040203schoollife.html").get();
words=doc.text();
}catch(Exception e){e.printStackTrace();}
return null;
}
@Override
protected void onPostExecute(Void aVoid) {
super.onPostExecute(aVoid);
texx.setText(words);
}
}
}
这是用于解析的java类,名为ParseMenu.java
似乎似乎有一些java类无法识别的问题,但我是初学者,我不确定。
任何答案或建议表示赞赏。提前谢谢!