mac_05185 2022-06-24 15:44 采纳率: 67.1%
浏览 63
已结题

Android运行报空指针异常?

img


对应控件已经绑定,但是还报错空指针,这是什么原因导致?


package com.mangoer.noisedetection;


import android.annotation.SuppressLint;
import android.os.Bundle;
import android.os.Handler;
import android.support.v4.app.FragmentActivity;
import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.RotateAnimation;
import android.view.animation.ScaleAnimation;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;

import com.mangoer.noisedetection.recorder.NoiseRecorder;
import com.mangoer.noisedetection.view.NoiseChartline;
import com.mangoer.noisedetection.view.NoiseboardView;

import org.achartengine.GraphicalView;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import butterknife.Bind;
import butterknife.ButterKnife;
import butterknife.OnClick;

public class MainActivity extends FragmentActivity {
    @Bind(R.id.text_vip)//噪音等级
    TextView text_vip;
    @Bind(R.id.bt_start)
    Button bt_start;
    @Bind(R.id.chart)
    LinearLayout chart;
    @Bind(R.id.left_temperature_curve)
    LinearLayout left_temperature_curve;
    @Bind(R.id.noiseboardView)
    NoiseboardView dashboardView;

    private GraphicalView mView;
    private NoiseChartline mService;
    private NoiseRecorder media;

    //记录指针旋转
    private float degree = 0.0f;
    private boolean is_start = true;

    List<Integer> degreeList = new ArrayList<>();


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.act_main);
        ButterKnife.bind(this);
//        init();
        media = new NoiseRecorder(handler);
        bt_start.setText("开始测试");
        setChartLineView();
    }

    private void init() {

        View rootView = findViewById(R.id.rl_root);

        RotateAnimation rotateAnima = new RotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
        // 设置动画持续时间
        rotateAnima.setDuration(1000);
        // 设置动画执行完毕时, 停留在完毕的状态下
        rotateAnima.setFillAfter(true);

        ScaleAnimation scaleAnima = new ScaleAnimation(
                0, 1,
                0, 1,
                Animation.RELATIVE_TO_SELF, 0.5f,
                Animation.RELATIVE_TO_SELF, 0.5f);
        scaleAnima.setDuration(1000);
        scaleAnima.setFillAfter(true);

        AlphaAnimation alphaAnima = new AlphaAnimation(0, 1);
        alphaAnima.setDuration(2000);
        alphaAnima.setFillAfter(true);

        // 把三个动画合在一起, 组成一个集合动画
        AnimationSet setAnima = new AnimationSet(false);
        setAnima.addAnimation(rotateAnima);
        setAnima.addAnimation(scaleAnima);
        setAnima.addAnimation(alphaAnima);

        rootView.startAnimation(setAnima);
    }


    private void setChartLineView() {
        mService = new NoiseChartline(this);
        mService.setXYMultipleSeriesDataset("分贝图");
        mService.setXYMultipleSeriesRenderer(150, "分贝图", "时间(S)", "分贝数值");
        mView = mService.getGraphicalView();
        left_temperature_curve.addView(mView, new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.MATCH_PARENT));
    }

    Handler handler = new Handler() {

        @SuppressLint("HandlerLeak")
        public void handleMessage(android.os.Message msg) {
            switch (msg.what) {
                case 0X00:
                    if ("-Infinity".equals(msg.obj.toString())) {
                        degree = 0f;
                    } else {
                        degree = (Float.parseFloat(msg.obj.toString()));//获取到的值
                    }

                    mService.updateChart(degree);

                    String subString;
                    //数据采集格式化
                    if (degree > 100) {
                        subString = String.valueOf(degree).substring(0, 3);
                    } else if (degree < 10) {
                        subString = String.valueOf(degree).substring(0, 1);
                    } else {
                        subString = String.valueOf(degree).substring(0, 2);
                    }
                    Integer integer = Integer.parseInt(subString);
                    if (integer != 0)
                        degreeList.add(integer);

                    if (dashboardView != null)
                        dashboardView.setRealTimeValue(integer);
                    break;
                default:
                    break;
            }
        }
    };

    @OnClick(R.id.bt_start)
    public void start() {
        if (!chart.isShown()) {
            chart.setVisibility(View.VISIBLE);
        }
        if (is_start) {
            degreeList.clear();
            bt_start.setText("停止测试");
            media.startRecord();
            is_start = false;
        } else {
            Collections.sort(degreeList);
            float total = 0;
            for (int i = 0; i < degreeList.size(); i++) {
                total += degreeList.get(i);
            }
            if (degreeList.size() > 0) {
                text_vip.setText("最小值:" + degreeList.get(0) + ",最大值:" + degreeList.get(degreeList.size() - 1) + ",平均值:" + total / degreeList.size());
            }

            bt_start.setText("开始测试");
            media.stopRecord();
            is_start = true;
        }
    }


    private long firstTime;

    @Override
    public void onBackPressed() {
        if (System.currentTimeMillis() - firstTime < 3000) {
            ButterKnife.unbind(this);
            finish();
        } else {
            firstTime = System.currentTimeMillis();
            Toast.makeText(this, "连续按两次退出程序", Toast.LENGTH_LONG).show();
        }
    }

}

这是我对应的xml布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/rl_root"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView
        android:id="@+id/title_textview"
        android:layout_width="match_parent"
        android:layout_height="48dip"
        android:background="@color/colorAccent"
        android:gravity="center"
        android:text="噪音测试仪"
        android:textColor="#FFFFFF"
        android:textSize="20sp" />

    <LinearLayout
        android:id="@+id/image_loca"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/title_textview"
        android:layout_marginTop="28dp"
        android:gravity="center"
        android:orientation="vertical">

        <com.mangoer.noisedetection.view.NoiseboardView
            android:id="@+id/noiseboardView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:bigSliceCount="10"
            app:maxValue="150"
            app:radius="110dp"
            app:ribbonWidth="40dp"
            app:scaleTextSize="10sp"
            app:unitText="DB" />

        <Button
            android:id="@+id/bt_start"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/shape"
            android:text="开始测试"
            android:textColor="@color/white" />

        <TextView
            android:id="@+id/text_vip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:gravity="center"
            android:lines="1"
            android:textColor="#00733C"
            android:textSize="16dp" />

    </LinearLayout>

    <LinearLayout
        android:id="@+id/chart"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@id/image_loca"
        android:layout_marginLeft="15dp"
        android:layout_marginTop="20dp"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        android:visibility="gone">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="分贝图"
            android:textSize="14sp" />

        <LinearLayout
            android:id="@+id/left_temperature_curve"
            android:layout_width="fill_parent"
            android:layout_height="200dp"
            android:orientation="horizontal">

        </LinearLayout>

    </LinearLayout>

</RelativeLayout>
  • 写回答

1条回答 默认 最新

  • 三杯五岳 2022-06-24 16:04
    关注

    错误日志截全

    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 6月24日
  • 创建了问题 6月24日

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧