gpt4 book ai didi

Android 应用程序无法打开网页链接

转载 作者:行者123 更新时间:2023-11-29 00:23:01 25 4
gpt4 key购买 nike

我在此应用程序的末尾有一个按钮,可将用户带到他们的默认浏览器和预定链接。不幸的是,那个按钮坏了。我不确定这是 Java 还是 XML 的问题,但是附上了两者的代码。

package com.example.ldsm3;

import android.net.Uri;
import android.os.Bundle;
import android.app.Activity
import android.content.DialogInterface;
import android.content.Intent;
import android.text.SpannableString;
import android.text.method.LinkMovementMethod;
import android.text.method.MovementMethod;
import android.view.Menu;
import android.widget.Button;
import android.widget.TextView;

public class Finished extends Activity {

public void onClick(Button button1)
{

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("URL HERE"));
startActivity(browserIntent);
}


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

// tv is the ID for the TextView in the XML file
TextView tv = (TextView) findViewById(R.id.textView2);

// set the TextView to show the score
tv.setText(Misc.correct + "/" + Misc.total);

}

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

}

还有 XML 代码...

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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"
tools:context=".Finished" >

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="69dp"
android:text="@string/Finished" />

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignRight="@+id/textView1"
android:layout_marginBottom="19dp"
android:text="Go to the game!" />

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button1"
android:layout_centerHorizontal="true"
android:layout_marginBottom="93dp"
android:text="0/0" />

</RelativeLayout>

我该如何解决这个问题?是因为 XML 还是 Java?我没有正确定义 Intent 吗?

最佳答案

您需要在 onCreate() 方法中添加:

Button button1 = (Button) findViewById(R.id.button1);
button1.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v) {
//Do your stuff here
}
});

关于Android 应用程序无法打开网页链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21816809/

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