为了账号安全,请及时绑定邮箱和手机立即绑定

为什么没有提示错误,可是运行说有错误不能运行,老师您可以帮我看看那有错吗

case R.id.add:{

break;

}



<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical" >


    <ProgressBar

        android:id="@+id/progressBar1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content" />


    <ProgressBar

        android:id="@+id/horiz"

        android:max="100"

        android:progress="50"

        android:secondaryProgress="80"

        style="?android:attr/progressBarStyleHorizontal"

        android:layout_width="match_parent"

        android:layout_height="wrap_content" />


    <Button

        android:id="@+id/add"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="@string/add" />


    <Button

        android:id="@+id/reduce"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="@string/reduce" />


    <Button

        android:id="@+id/reset"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="@string/reset" />


    <TextView

        android:id="@+id/text"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="TextView" />


</LinearLayout>

为什么没有提示错误,可是运行说有错误不能运行,老师您可以帮我看看那有错吗

正在回答

2 回答

你string.xml文件里有没有赋值

0 回复 有任何疑惑可以回复我~

package com.example.android_progressbar;


import android.support.v7.app.ActionBarActivity;

import android.app.ProgressDialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

import android.view.View.OnClickListener;

import android.view.Window;

import android.webkit.WebView;

import android.webkit.WebView.FindListener;

import android.widget.Button;

import android.widget.ProgressBar;

import android.widget.TextView;

import android.widget.Toast;



public class MainActivity extends ActionBarActivity implements OnClickListener{

private ProgressBar progress;

private Button add;

private Button reduce;

private Button reset;

private TextView text;

private ProgressDialog prodialog;

private Button show;


    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

       

        //启用窗口特征,启用带进度和不带进度的进度条

        requestWindowFeature(Window.FEATURE_PROGRESS);

        requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);

        setContentView(R.layout.main);

        //显示两种进度条

        setProgressBarVisibility(true);

        setProgressBarIndeterminateVisibility(true);

        //max1000

        setProgress(999);

        init();

    }


private void init() {

// TODO Auto-generated method stub

progress=(ProgressBar) findViewById(R.id.horiz);

add=(Button) findViewById(R.id.add);

reduce=(Button) findViewById(R.id.reduce);

reset=(Button) findViewById(R.id.reset);

text=(TextView) findViewById(R.id.text);

show=(Button) findViewById(R.id.show);

show.setOnClickListener(this);

//获取第一进度条的进度

int first=progress.getProgress();

//获取第二进度条的进度

int second=progress.getSecondaryProgress();

//获取进度条的最大进度

int max=progress.getMax();

text.setText("第一进度的百分比:"+(int)(first/(float)max*100)+"% 第二进度的百分比:"+(int)(second/(float)max*100)+"%");

add.setOnClickListener(this);

reduce.setOnClickListener(this);

reset.setOnClickListener(this);

}


@Override

public void onClick(View v) {

// TODO Auto-generated method stub

switch(v.getId()){

case R.id.add:{

//增加第一进度和第二进度10个刻度

progress.incrementProgressBy(10);

progress.incrementSecondaryProgressBy(10);

break;

}

case R.id.reduce:{

progress.incrementProgressBy(-10);

progress.incrementSecondaryProgressBy(-10);

break;

}

case R.id.reset:{

progress.setProgress(50);

progress.setSecondaryProgress(80);

break;

}

case R.id.show:{

/*

* 页面显示功能

*/

//新建ProgressDialog对象

prodialog=new ProgressDialog(MainActivity.this);

//设置显示风格

prodialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);

//设置标题

prodialog.setTitle("慕课网");

//设置对话框里的文字信息

prodialog.setMessage("欢迎大家支持慕课网");

//设置图标

prodialog.setIcon(R.drawable.ic_launcher);

/*

* 设定关于ProgressBar的一些属性

*/

//设定最大进度

prodialog.setMax(100);

//设定初始化已经增长到的进度

prodialog.incrementProgressBy(50);

//进度条是明显显示进度的

prodialog.setIndeterminate(false);

/*

* 设定一个确定按钮

*/

prodialog.setButton(DialogInterface.BUTTON_POSITIVE, "确定", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface arg0, int arg1) {

// TODO Auto-generated method stub

Toast.makeText(MainActivity.this, "欢迎支持慕课网",Toast.LENGTH_SHORT).show();

}

});

//是否可以通过返回按钮退出对话框

prodialog.setCancelable(true);

//显示ProgressDialog

prodialog.show();

break;

}

}

text.setText("第一进度的百分比:"+(int)(progress.getProgress()/(float)progress.getMax()*100)+"% 第二进度的百分比:"+(int)(progress.getSecondaryProgress()/(float)progress.getMax()*100)+"%");

}



   

}

还是不行,不是break的问题



0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第二门课(第1季)
  • 参与学习       111162    人
  • 解答问题       1457    个

本课程由浅入深地带您学会Android的常用控件的开发和使用

进入课程

为什么没有提示错误,可是运行说有错误不能运行,老师您可以帮我看看那有错吗

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信