프로그레스바

android 2020. 2. 1. 12:39
  • progress : 초기값, max : 최대값
public class MainActivity extends AppCompatActivity {

    ProgressBar progressBar;
    int value = 0;

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

        progressBar = findViewById(R.id.progressBar);

        Button button = (Button) findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                value += 10;
                if (value > 100) {
                    value = 0;
                }

                progressBar.setProgress(value);
            }
        });
    }
}

'android' 카테고리의 다른 글

Intent 값전달 및 받기  (0) 2020.02.01
Intent 사용법  (0) 2020.02.01
다이얼로그 메시지  (0) 2020.02.01
스낵바 메시지  (0) 2020.02.01
토스트 메시지 위치 변경  (0) 2020.02.01
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,