我已经做了以下的偏好活动:
<activity
android:name=".Preferences"
android:noHistory="true"
android:label="@string/set_preferences">
</activity>
在该活动中,有一个底部可以在浏览器上启动网站。按下该底部然后“返回”会返回到“首选项”菜单。为什么呢?
答案 0 :(得分:1)
添加到Manifest文件的代码很好。尝试使用此代码进行按钮操作。
public void buttonClick(View v){
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);
}