0
 E/AndroidRuntime(15518): FATAL EXCEPTION: main
 E/AndroidRuntime(15518): java.lang.RuntimeException: Unable to instantiate activity      ComponentInfo{com.cydeon.plasmamodz/com.cydeon.plasmamodz.Boots}:     java.lang.NullPointerException
E/AndroidRuntime(15518):    at    android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2224)
 E/AndroidRuntime(15518):   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2358)
 E/AndroidRuntime(15518):   at android.app.ActivityThread.access$600(ActivityThread.java:154)
 E/AndroidRuntime(15518):   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1248)
 E/AndroidRuntime(15518):   at android.os.Handler.dispatchMessage(Handler.java:99)
 E/AndroidRuntime(15518):   at android.os.Looper.loop(Looper.java:137)
 E/AndroidRuntime(15518):   at android.app.ActivityThread.main(ActivityThread.java:5235)
 E/AndroidRuntime(15518):   at java.lang.reflect.Method.invokeNative(Native Method)
 E/AndroidRuntime(15518):   at java.lang.reflect.Method.invoke(Method.java:511)
 E/AndroidRuntime(15518):   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
 E/AndroidRuntime(15518):   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
 E/AndroidRuntime(15518):   at dalvik.system.NativeStart.main(Native Method)
 E/AndroidRuntime(15518): Caused by: java.lang.NullPointerException
 E/AndroidRuntime(15518):   at android.app.Activity.findViewById(Activity.java:1839)
 E/AndroidRuntime(15518):   at com.cydeon.plasmamodz.Boots.<init>(Boots.java:47)
 E/AndroidRuntime(15518):   at java.lang.Class.newInstanceImpl(Native Method)
 E/AndroidRuntime(15518):   at java.lang.Class.newInstance(Class.java:1319)
 E/AndroidRuntime(15518):   at android.app.Instrumentation.newActivity(Instrumentation.java:1054)
 E/AndroidRuntime(15518):   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2215)
 E/AndroidRuntime(15518):   ... 11 more

トピックは混乱しています。説明させてください。私のアプリでは、1 つのセクションだけで 70 個以上のボタンがあります。私は多くの異なるセクションを持っています。現在、各ボタンは同じレイアウトを使用しているため、各ボタンは同じアクティビティを開始します。そのようにして、70 の個別のクラスを作成しません。さて、この新しいクラスでは、選択されたバグトンに対応する画像を表示し、(特定のボタンがクリックされたときに) ファイルをダウンロードする必要があります。したがって、基本的には、この別のクラスでこれらのボタンを識別する何らかの方法が必要であり、「ボタン x が押された場合は画像 y を表示し、ボタン y が押された場合は画像 x を表示します。同様に、ボタン x が押された場合はファイルをダウンロードします。 y、ボタン y が押された場合、ファイル x をダウンロードするなど。前のクラスでどのボタンが押されたかを知る方法がわかりません。これについて本当に助けが必要です。私は 2 週間働いていますが、これは私を止めさせて、そして答えが見つからない。これは実際にはコードに依存するものではなく、アプリ全体でこのメソッドを複数回使用するため、コードを投稿する必要はないと思います。繰り返しますが、私の質問を繰り返しますが、複数のボタンが同じアクティビティを開始します。そのアクティビティでは、前のクラスで押されたボタンに従って何かを行う必要があります。ありがとう。:)

編集:ここにいくつかのコードがあります...

BootFragment.java:

package com.cydeon.plasmamodz;

 import java.io.File;
 import java.io.IOException;
 import java.util.concurrent.TimeoutException;

 import com.stericson.RootTools.RootTools;
 import com.stericson.RootTools.exceptions.RootDeniedException;
 import com.stericson.RootTools.execution.CommandCapture;

 import android.app.Fragment;
 import android.content.Intent;
 import android.os.Bundle;
 import android.os.Environment;
 import android.view.LayoutInflater;
 import android.view.View;
 import android.view.ViewGroup;
 import android.widget.Button;

 public class BootFragment extends Fragment {{


    //Defining File Directory
    File directory = new File(Environment.getExternalStorageDirectory() + "/plasma/boot");
    if(directory.exists() && directory.isDirectory()){
    //Do nothing. Directory is existent 
    }else{
    //Directory does not exist. Make directory (First time app users)
    directory.mkdirs();
    }

    File bkup = new File(Environment.getExternalStorageDirectory() + "/plasma/boot/bkup");
    if(bkup.exists() && bkup.isDirectory()){
    //Do nothing. Directory is existent 
    }else{
    //Directory does not exist. Make directory (First time app users)
    bkup.mkdirs();
    }}





@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
     View view = inflater.inflate(R.layout.boot_frag,
                container, false);
     Button Ablue = (Button) view.findViewById(R.id.bABlue);
     Button AblueR = (Button) view.findViewById(R.id.bABlueR);
     Button Abokeh = (Button) view.findViewById(R.id.bAbokeh);

     Ablue.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
                    Intent b = new Intent(getActivity(), Boots.class);
                    b.putExtra("Dragon", R.id.bABlue);
                    BootFragment.this.startActivity(b);
            }
            });

     AblueR.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View arg0) {
                        Intent c = new Intent(getActivity(), Boots.class);
                        c.putExtra("Xbox", R.id.bABlueR);
                        BootFragment.this.startActivity(c);
                }
                });

     Abokeh.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View arg0) {
                        Intent d = new Intent(getActivity(), Boots.class);
                        d.putExtra("GameB", R.id.bAbokeh);
                        BootFragment.this.startActivity(d);
                }
                });

     return view;



 }} 

Boots.java:

package com.cydeon.plasmamodz;

import com.stericson.RootTools.*;
import com.stericson.RootTools.exceptions.RootDeniedException;
import com.stericson.RootTools.execution.CommandCapture;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Reader;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;
import java.util.concurrent.TimeoutException;

import com.cydeon.plasmamodz.R;

import android.app.ActionBar;
import android.app.Activity;
import android.app.DownloadManager;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;

//Class for Boot Animation Blue Kindle
public class Boots extends Activity {

public static String TAG = "Boots";
Process process;

private class DownloadFile extends AsyncTask<String, Integer, String>{
    @Override
    protected String doInBackground(String... sURL) {
        try{
            URL url = new URL(sURL[0]);
            URLConnection connection = url.openConnection();
            connection.connect();
            //Shows 0-100% progress bar
            int fileLength = connection.getContentLength();

            //Download the file
            InputStream input = new BufferedInputStream(url.openStream());
            OutputStream output = new FileOutputStream("/sdcard/plasma/boot/b..ootanimation.zip");

            byte data[] = new byte[1024];
            long total = 0;
            int count;
            while ((count = input.read(data)) != -1) {
                total += count;
                //Publish the Progress
                publishProgress((int) (total * 100/fileLength));
                output.write(data, 0, count);
                }

            output.flush();
            output.close();
            input.close();
    } catch (Exception e) {

    }
    return null;
    }

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        mProgressDialog.show();
    }

    @Override
    protected void onProgressUpdate(Integer... progress){
        super.onProgressUpdate(progress);
        mProgressDialog.setProgress(progress[0]);



    }

    @Override
    protected void onPostExecute(String result) {
        // TODO Auto-generated method stub
        super.onPostExecute(result);
        mProgressDialog.dismiss();
        Context context = getApplicationContext();
        CharSequence text = "Installing. Please Wait";
        int duration = Toast.LENGTH_SHORT;

        Toast toast = Toast.makeText(context, text, duration);
        toast.show();

        if (RootTools.isBusyboxAvailable()){
            RootTools.remount("/system", "rw");
            CommandCapture command = new CommandCapture(0, "su", "sh /sdcard/plasma/scripts/boots.sh");
                try {
                    RootTools.getShell(true).add(command).waitForFinish();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                } catch (RootDeniedException e) {
                    e.printStackTrace();
                }

        } else {
            RootTools.offerBusyBox(Boots.this);
        }

    }
}

ProgressDialog mProgressDialog;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.boots);
    ActionBar actionBar = getActionBar();
    actionBar.hide();
    ImageView img = (ImageView) findViewById(R.id.iv2);
    img.setImageResource(R.drawable.boot1);
    Button install = (Button) findViewById(R.id.bAInstall);
    Button rtrn = (Button) findViewById(R.id.bAReturn);
    mProgressDialog = new ProgressDialog(Boots.this);
    mProgressDialog.setMessage("Downloading..." );
    mProgressDialog.setIndeterminate(false);
    mProgressDialog.setMax(100);
    mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);

    install.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
            TextView creator = (TextView) findViewById(R.id.tvCreate);
            Intent bootI = getIntent();
            int dball = getIntent().getExtras().getInt("Dragon", -1);
            int xbox = getIntent().getExtras().getInt("Xbox", -1);
            int GameB = getIntent().getExtras().getInt("GameB", 1);
            if (dball != -1){
            DownloadFile downloadFile = new DownloadFile();
            downloadFile.execute("http:\\correspondingurl");
            creator.setText("Dragon Ball");
            }if (xbox != -1){
                DownloadFile downloadFile = new DownloadFile();
                downloadFile.execute("http:\\correspondingurl");
                creator.setText("Xbox");
            }if (GameB != -1){
                DownloadFile downloadFile = new DownloadFile();
                downloadFile.execute("http:\\correspondingurl");
                creator.setText("GameBoy");
            }


            }

        }
    );

    rtrn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
            finish();
        }
    });

    }



}

私は多くの異なる方法を試しました。これは私の最近の試みです。それらのどれも機能していません。

猫ログ: 上部を見てください.

4

3 に答える 3

1

Intent.putExtra()を介して、必要な情報をIntentの新しいアクティビティに渡します(http://developer.android.com/reference/android/content/Intent.htmlを参照) 。

于 2013-03-05T01:49:35.730 に答える
0

フラグメントクラスで、次の手順を実行します。

public class BootFragment extends Fragment implements android.view.View.OnClickListener{

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
        Button Ablue = (Button) view.findViewById(R.id.bABlue);
        Button AblueR = (Button) view.findViewById(R.id.bABlueR);
        Button Abokeh = (Button) view.findViewById(R.id.bAbokeh);

       Ablue.setOnClickListener(this);
       AblueR.setOnClickListener(this);
       Abokeh.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        int btnId = v.getId();
        Intent d = new Intent(getActivity(), Boots.class);
        d.putExtra("BUTTON_ID", btnId);
        startActivity(d);
    }
}

Boots.javaで、次の手順を実行します。

public class Boots extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {

        int btnId = getIntent().getExtras().getInt("BUTTON_ID", -1);
        switch(btnId){
           case: R.id.your_btn_id_1:
           // logic for your button press
           break;
           case: R.id.your_btn_id_2:
           // logic for your button press
           break;
           case: R.id.your_btn_id_n:
           // logic for your button press
           break;
        }
    }
}

注:レイアウトxmlファイルの各ボタンに一意のIDを指定する必要があります

于 2013-03-05T07:05:58.490 に答える
0

各ボタンに を割り当ててみてくださいunique name/id。ボタンがクリックされたら、その名前を取得し、 を使用して新しいアクティビティに渡しますIntent.putExtra()。新しいアクティビティでは、この情報を入手したら、それに応じて必要な機能を実行できます。

サンプルコード:

ボタンのxmlで、これを行います

    android:onClick="OnButtonClick"

First Activity のコードでは、次のように定義OnButtonClickします。

   public void OnButtonClick(View v) {
      switch (v.getId()) {
        case R.id.button1:
           doSomething1(); //Intent.putExtra(ButtonID)
            break;
        case R.id.button2:
           doSomething2();
           break;
     }

}

2 番目のアクティビティで、この ID を取得しswitch-case、ボタンの ID に応じてアクションを実行するようにします。

これが理にかなっていることを願っています!

于 2013-03-05T05:10:24.900 に答える