-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainActivity.java
116 lines (81 loc) · 3.02 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.gamecodeschool.javameetui;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
// An int variable to hold a value
private int value = 0;
// A bunch of Buttons and a TextView
private Button btnAdd;
private Button btnTake;
private TextView txtValue;
private Button btnGrow;
private Button btnShrink;
private Button btnReset;
private Button btnHide;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Get a reference to all the buttons in our UI
// Match them up to all our Button objects we declared earlier
btnAdd = (Button) findViewById(R.id.btnAdd);
btnTake = (Button) findViewById(R.id.btnTake);
txtValue = (TextView) findViewById(R.id.txtValue);
btnGrow = (Button) findViewById(R.id.btnGrow);
btnShrink = (Button) findViewById(R.id.btnShrink);
btnReset = (Button) findViewById(R.id.btnReset);
btnHide = (Button) findViewById(R.id.btnHide);
// Listen for all the button clicks
btnAdd.setOnClickListener(this);
btnTake.setOnClickListener(this);
txtValue.setOnClickListener(this);
btnGrow.setOnClickListener(this);
btnShrink.setOnClickListener(this);
btnReset.setOnClickListener(this);
btnHide.setOnClickListener(this);
}
@Override
public void onClick(View view) {
// A local variable to use later
float size;
switch(view.getId()){
case R.id.btnAdd:
value ++;
txtValue.setText(""+ value);
break;
case R.id.btnTake:
value--;
txtValue.setText(""+ value);
break;
case R.id.btnReset:
value = 0;
txtValue.setText(""+ value);
break;
case R.id.btnGrow:
size = txtValue.getTextScaleX();
txtValue.setTextScaleX(size + 1);
break;
case R.id.btnShrink:
size = txtValue.getTextScaleX();
txtValue.setTextScaleX(size - 1);
break;
case R.id.btnHide:
if(txtValue.getVisibility() == View.VISIBLE)
{
// Currently visible so hide it
txtValue.setVisibility(View.INVISIBLE);
// Change text on the button
btnHide.setText("SHOW");
}else{
// Currently hidden so show it
txtValue.setVisibility(View.VISIBLE);
// Change text on the button
btnHide.setText("HIDE");
}
break;
}
}
}