gpt4 book ai didi

java - 为什么我的应用程序在启动时不断崩溃 - Android

转载 作者:行者123 更新时间:2023-12-02 06:19:04 26 4
gpt4 key购买 nike

刚刚按照 YouTube 指南了解如何制作按钮和 Activity 。我按照他的代码调整字体大小,但当我启动它时,它不断崩溃。有谁知道为什么吗?

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
addButtonClickListner();
}

public void addButtonClickListner() {
Button btnNavigator = (Button) findViewById(R.id.button1);
btnNavigator.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.premierleague.com"));
startActivity(intent);
}
});
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

}

最佳答案

尝试在您的网站名称前添加 http://!

Intent intent = new Intent(Intent.ACTION_VIEW Uri.parse("http://www.premierleague.com"));

并验证您是否确实正确地将按钮命名为button1

我的意思是在你的xml中你是否使用了类似的东西:

<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/button1"

关于java - 为什么我的应用程序在启动时不断崩溃 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22975045/

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