アプリを開くと、「アプリケーションが停止しました」というメッセージが表示されます。その理由は何ですか?
メインクラス:
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); // Always call super.onCreate() first.
setContentView(R.layout.activity_main); // Then load the layout.
// Find textView3 in layout and set it's text to HTML code.
// There's no need to create a new TextView() here.
TextView textView = (TextView) findViewById(R.id.textView1);
textView.setText(getHtmlCode());
}
// Structure your code. If it's a larger block that does one thing,
// extract it into a method.
private String getHtmlCode() {
try {
Document doc = Jsoup.connect("http://www.example.com/").get();
Element content = doc.select("a").first();
// return content.text();
return "kktt";
} catch (IOException e) {
Toast.makeText(this, "Failed to load HTML code",
Toast.LENGTH_SHORT).show();
return "kk";
}
}
}
////Elements divs = doc.select("div#test"); //select all the content of the div tags with the id attribute set to test
*jarをライブラリに追加します