ProgressBar 컨트롤
4466 단어 android
XML
max
progess
secondaryProgress
progressDrawable
progressBarStyle
progressBarStyleHorizontal
progressBarStyleLarge
progressBarStyleSmall
progressBar 의 Style 은 다음 과 같은 값 이 있 습 니 다.
horizontal
inverse 、
large
large.inverse 、
small
small.inverse 、
설명: 1. 이상 의 style 속성 값 앞 에 다음 과 같은 접 두 사 를 붙 여야 합 니 다. @android: style / Widget. ProgressBar., 예: @android: style / Widget. PorgressBar. Large: 큰 진도 바 2, Widget: 우리 가 부 르 는 UI 의 컨트롤 은 작은 위 젯 이 라 고도 합 니 다.실례:
MainActivity. java 의 코드:
package com.jxust.day03_07;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.os.SystemClock;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ProgressBar;
public class MainActivity extends ActionBarActivity {
ProgressBar mProgressBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
setListener();
}
private void setListener() {
findViewById(R.id.btnDownload).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
new Thread() {
public void run() {
mProgressBar.setProgress(0);
for (int i = 0; i <= 100; i++) {
mProgressBar.setProgress(i);
SystemClock.sleep(10); // 10
// 10 : ,Tread , Tread
/*
* try{ Thread.sleep(10); }
* catch(InterruptedException e){
* e.printStackTrace(); }
*/
}
};
}.start();
}
});
}
private void initView() {
mProgressBar = (ProgressBar) findViewById(R.id.pb2);
mProgressBar.setProgress(0);
}
}
activity_main. xml 코드
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/rlBar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ProgressBar
android:id="@+id/pb1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/rlBar1"
android:layout_marginTop="10dp" >
<ProgressBar
android:id="@+id/pb2"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
android:progress="30" />
<Button
android:layout_marginTop="25dp"
android:id="@+id/btnDownload"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Download File"
/>
</RelativeLayout>
</RelativeLayout>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.