簡體   English   中英

Android 進度條不起作用

[英]Android Progress Bar not working

我在 Android 中制作了一個進度條,但它根本不起作用。 我究竟做錯了什么? 我剛開始學習安卓。 下面是我的代碼。

MainActivity.java-

public class MainActivity extends AppCompatActivity {
    ProgressBar progressBar;
    int mporgress=0;
    EditText time;
    private Handler mHandler = new Handler();
    private static final int PROGRESS = 0x1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
           public void Startbuttononclick(View view){
               Button startbutton=(Button) findViewById(R.id.button);
               startbutton.setOnClickListener(new View.OnClickListener(){
                   @Override
                   public void onClick(View v) {

                       mporgress = Integer.parseInt(time.getText().toString());
                       progressBar.setProgress(mporgress);

                       new Thread(new Runnable() {
                           public void run() {
                               while (mporgress < 100) {
                                   // Update the progress bar
                                   mHandler.post(new Runnable() {
                                       public void run() {
                                           progressBar.setProgress(mporgress);
                                           mporgress = doWork();
                                           try{
                                               Thread.sleep(1000);
                                           }catch (InterruptedException e){}
                                       }
                                   });
                               }
                           }
                       }).start();

                   }
               });
           }
    public void doprogress(View view) {

    }
        public int doWork(){
                  mporgress++;
            return mporgress;
        }
}

Activity_main.xml-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.android.progressbar.MainActivity">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Enter the time:"
        android:inputType="number"
        android:id="@+id/editText" />

    <ProgressBar
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="500dp"
        android:layout_height="200dp"
        android:id="@+id/progressBar4"
        android:layout_gravity="center"
        android:scrollbarSize="500dp" />

    <Button
        android:text="START"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/button"
        android:layout_gravity="center"
        android:onClick="Startbuttononclick" />
</LinearLayout>

看看下面這張圖片 - https://i.stack.imgur.com/2TBIb.png

注意 - 在此圖像中輸入時間是帶有提示的 EditText 而不是 TextView。

它出現但不起作用。

到目前為止,我已經完成了這些更改。- https://i.stack.imgur.com/UujpB.png

但進度條仍在不斷旋轉。

似乎您忘記初始化EditText -timeProgressBar onCreate初始化它:

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

    progressBar =(ProgressBar) findViewById(R.id.progressBar4);
    time = (EditText) findViewById(R.id.editText); //here
}

同樣在按鈕內部單擊bar

progressBar = new ProgressBar(this);
mporgress = Integer.parseInt(time.getText().toString());
    ................
          .............

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM