-
Notifications
You must be signed in to change notification settings - Fork 38
/
MainActivity.java
83 lines (65 loc) · 2.64 KB
/
MainActivity.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package io.gresse.hugo.vumeter;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.CompoundButton;
import android.widget.SeekBar;
import android.widget.Switch;
import io.gresse.hugo.vumeterlibrary.VuMeterView;
public class MainActivity extends AppCompatActivity {
private VuMeterView mVuMeterView;
private SeekBar mBarNumberSeekBar;
private Switch mAnimationSwitch;
private boolean mEnableAnimation;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mVuMeterView = (VuMeterView) findViewById(R.id.vumeter);
mBarNumberSeekBar = (SeekBar) findViewById(R.id.numberSeekBar);
mAnimationSwitch = (Switch) findViewById(R.id.barNumberSwitch);
mBarNumberSeekBar.incrementProgressBy(1);
mBarNumberSeekBar.setMax(10);
mBarNumberSeekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onStopTrackingTouch(SeekBar seekBar) { }
@Override
public void onStartTrackingTouch(SeekBar seekBar) { }
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
mVuMeterView.setBlockNumber(progress +1);
}
});
mAnimationSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
mEnableAnimation = isChecked;
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
switch (id) {
case R.id.action_stop:
mVuMeterView.stop(mEnableAnimation);
return true;
case R.id.action_resume:
mVuMeterView.resume(mEnableAnimation);
return true;
case R.id.action_pause:
mVuMeterView.pause();
return true;
}
return super.onOptionsItemSelected(item);
}
}