0

ボタンをクリックしてWebブラウザウィンドウを開こうとしています。

クリックイベントが呼び出されていないようです。LogCatは、エラーや呼び出しの証拠を示していません。これは、''という名前の2つのメソッドがあるためだと思いますがonClick、2番目のメソッドを削除するとエラーが発生します。MainActivityを抽象化することでこのエラーを修正できますが、アプリがクラッシュします。

これは簡単な修正だと思いますが、ドキュメントといくつかのチュートリアルを注いだ後、答えが見つかりません。

コードは以下にあり、その後に私のマニフェストが続きます。前もって感謝します。

package com.spotsofmagic.spotsofmagic;

import android.app.Activity;
import android.app.AlertDialog;
import android.bluetooth.BluetoothAdapter;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.net.Uri;
import android.nfc.NdefMessage;
import android.nfc.NdefRecord;
import android.nfc.NfcAdapter;
import android.os.Bundle;
import android.os.Parcelable;
import android.util.Log;
import android.view.View;
import android.widget.TextView;


public class MainActivity extends Activity implements OnClickListener {
    private static final String TAG = "Activity...";
    private NfcAdapter mAdapter;
    private TextView mTextView;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_activity);

        // grab our NFC Adapter
        mAdapter = NfcAdapter.getDefaultAdapter(this);

        // TextView that we'll use to output messages to screen
        mTextView = (TextView)findViewById(R.id.text_view);

        //displayMessage("Loading payload...");

    }

    private void displayMessage(String message) {
        mTextView.setText(message);
    }

    public void onClick(View v) {
        // TODO Auto-generated method stub
        // do something when the button is clicked
        displayMessage("Loading broswer");
        Uri uriUrl = Uri.parse("http://www.***.com/");      
        Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);  
        startActivity(launchBrowser);  

        if(v.getId() == R.id.btnVisitWebsite) {

        }
    }

    public void onClick(DialogInterface dialog, int which) {
        // TODO Auto-generated method stub

    }
}

そしてマニフェスト:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.spotsofmagic.spotsofmagic"
    android:versionCode="1"
    android:versionName="1.0" android:installLocation="auto">

    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />

    <uses-permission android:name="android.permission.NFC" />
    <uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-feature android:name="android.hardware.nfc" android:required="true" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >

        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

         <activity
            android:name=".CardActivity"
            android:label="@string/app_name" >

            <!-- Handle a collectable card NDEF record -->
            <intent-filter>
                <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
                <data android:mimeType="application/vnd.spotsofmagic.spotsofmagic"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
         </activity>

    </application>

</manifest>
4

3 に答える 3

3

クリックイベントを関連付けなかったためです。

それをボタン(または)何かにバインドしている場合は、「これ」のためにバインドする必要があります

例:

   button.setOnClickListener(this);
于 2012-09-06T14:00:56.800 に答える
3

あなたは持ってOnClickListenerいますが、それをどのボタンにも付けていません。試す

((Button) findViewById(R.id.your_button_id)).setOnClickListener(this);

編集:DialogInterface.OnClickListener他の問題は、の代わりにView.OnClickListener実装したことですActivity

インポートを削除します

import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;

そして追加

import android.view.View.OnClickListener;

削除することもできます

public void onClick(DialogInterface dialog, int which) {
    // TODO Auto-generated method stub

}

この後。

于 2012-09-06T14:02:11.910 に答える
1

混乱を避けるために、プログラムでビューを作成していない場合は、XMLを使用してそれを行うこともできます。あなたはこのようなことをすることができます。

<Button android:width="20dp" android:height="20dp" android:onClick="openBrowser" />

プログラムでメソッドを次のように提供します

public void openBrowser(View v)
{
   /*  do your stuff here */

 }
于 2012-09-06T14:26:14.413 に答える