服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - 非常好看的android音量旋钮

非常好看的android音量旋钮

2022-11-15 16:11cf8833 Android

这篇文章主要为大家详细介绍了android好看的音量旋钮,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了好看的android音量旋钮,供大家参考,具体内容如下

效果图:

非常好看的android音量旋钮

实现思路,用的自定义的控件,图片和按钮都是自己绘制的,并且附带点击事件,可以监听当前的旋钮的值:

第一步:先把布局写了:

?
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:background="#000000"
 android:layout_width="match_parent"
 android:gravity="center"
 android:layout_height="match_parent">
 <TextView
  android:id="@+id/tv"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textColor="#ffffff"
  />
 <LinearLayout
  android:layout_width="300dp"
  android:layout_height="300dp"
  android:layout_marginBottom="10dp"
  android:orientation="horizontal">
 
  <com.example.longshine.zname.AnalogController
   android:id="@+id/controllerBass"
   android:layout_width="0dp"
   android:layout_height="match_parent"
   android:layout_weight="1"
   android:background="#000000" />
 
 </LinearLayout>
 
 
</LinearLayout>

第二步:然后把自定义的控件类写了:AnalogController

?
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import android.content.Context;
  import android.graphics.Canvas;
  import android.graphics.Color;
  import android.graphics.Paint;
  import android.util.AttributeSet;
  import android.view.MotionEvent;
  import android.view.View;
 
 
/**
 * Created by Harjot on 23-May-16.
 */
public class AnalogController extends View {
 
 static float width, height;
 float midx, midy;
 Paint textPaint;
 Paint circlePaint;
 public Paint circlePaint2;
 public Paint linePaint;
 String angle;
 float currdeg, deg = 3, downdeg, prevCurrDeg;
 boolean isIncreasing, isDecreasing;
 public static int themeColor = Color.parseColor("#B24242");
 
 int progressColor, lineColor;
 
 onProgressChangedListener mListener;
 
 String label;
 
 public interface onProgressChangedListener {
  void onProgressChanged(int progress);
 }
 
 public void setOnProgressChangedListener(onProgressChangedListener listener) {
  mListener = listener;
 }
 
 public AnalogController(Context context) {
  super(context);
  init();
 }
 
 public AnalogController(Context context, AttributeSet attrs) {
  super(context, attrs);
  init();
 }
 
 public AnalogController(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  init();
 }
 
 void init() {
  textPaint = new Paint();
  textPaint.setColor(Color.WHITE);
  textPaint.setStyle(Paint.Style.FILL);
  textPaint.setTextSize(20);
  textPaint.setFakeBoldText(true);
  textPaint.setTextAlign(Paint.Align.CENTER);
  circlePaint = new Paint();
  circlePaint.setColor(Color.parseColor("#222222"));
  circlePaint.setStyle(Paint.Style.FILL);
  circlePaint2 = new Paint();
  circlePaint2.setColor(themeColor);
//  circlePaint2.setColor(Color.parseColor("#FFA036"));
  circlePaint2.setStyle(Paint.Style.FILL);
  linePaint = new Paint();
  linePaint.setColor(themeColor);
//  linePaint.setColor(Color.parseColor("#FFA036"));
  linePaint.setStrokeWidth(7);
  angle = "0.0";
  label = "Label";
 }
 
 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  midx = canvas.getWidth() / 2;
  midy = canvas.getHeight() / 2;
 
  int ang = 0;
  float x = 0, y = 0;
  int radius = (int) (Math.min(midx, midy) * ((float) 14.5 / 16));
  float deg2 = Math.max(3, deg);
  float deg3 = Math.min(deg, 21);
  for (int i = (int) (deg2); i < 22; i++) {
   float tmp = (float) i / 24;
   x = midx + (float) (radius * Math.sin(2 * Math.PI * (1.0 - tmp)));
   y = midy + (float) (radius * Math.cos(2 * Math.PI * (1.0 - tmp)));
   circlePaint.setColor(Color.parseColor("#111111"));
   canvas.drawCircle(x, y, ((float) radius / 15), circlePaint);
  }
  for (int i = 3; i <= deg3; i++) {
   float tmp = (float) i / 24;
   x = midx + (float) (radius * Math.sin(2 * Math.PI * (1.0 - tmp)));
   y = midy + (float) (radius * Math.cos(2 * Math.PI * (1.0 - tmp)));
   canvas.drawCircle(x, y, ((float) radius / 15), circlePaint2);
  }
 
  float tmp2 = (float) deg / 24;
  float x1 = midx + (float) (radius * ((float) 2 / 5) * Math.sin(2 * Math.PI * (1.0 - tmp2)));
  float y1 = midy + (float) (radius * ((float) 2 / 5) * Math.cos(2 * Math.PI * (1.0 - tmp2)));
  float x2 = midx + (float) (radius * ((float) 3 / 5) * Math.sin(2 * Math.PI * (1.0 - tmp2)));
  float y2 = midy + (float) (radius * ((float) 3 / 5) * Math.cos(2 * Math.PI * (1.0 - tmp2)));
 
  circlePaint.setColor(Color.parseColor("#222222"));
  canvas.drawCircle(midx, midy, radius * ((float) 13 / 15), circlePaint);
  circlePaint.setColor(Color.parseColor("#000000"));
  canvas.drawCircle(midx, midy, radius * ((float) 11 / 15), circlePaint);
  canvas.drawText(label, midx, midy + (float) (radius * 1.1), textPaint);
  canvas.drawLine(x1, y1, x2, y2, linePaint);
 
 }
 
 @Override
 public boolean onTouchEvent(MotionEvent e) {
 
  mListener.onProgressChanged((int) (deg - 2));
 
  if (e.getAction() == MotionEvent.ACTION_DOWN) {
   float dx = e.getX() - midx;
   float dy = e.getY() - midy;
   downdeg = (float) ((Math.atan2(dy, dx) * 180) / Math.PI);
   downdeg -= 90;
   if (downdeg < 0) {
    downdeg += 360;
   }
   downdeg = (float) Math.floor(downdeg / 15);
   return true;
  }
  if (e.getAction() == MotionEvent.ACTION_MOVE) {
   float dx = e.getX() - midx;
   float dy = e.getY() - midy;
   currdeg = (float) ((Math.atan2(dy, dx) * 180) / Math.PI);
   currdeg -= 90;
   if (currdeg < 0) {
    currdeg += 360;
   }
   currdeg = (float) Math.floor(currdeg / 15);
 
   if (currdeg == 0 && downdeg == 23) {
    deg++;
    if (deg > 21) {
     deg = 21;
    }
    downdeg = currdeg;
   } else if (currdeg == 23 && downdeg == 0) {
    deg--;
    if (deg < 3) {
     deg = 3;
    }
    downdeg = currdeg;
   } else {
    deg += (currdeg - downdeg);
    if (deg > 21) {
     deg = 21;
    }
    if (deg < 3) {
     deg = 3;
    }
    downdeg = currdeg;
   }
 
   angle = String.valueOf(String.valueOf(deg));
   invalidate();
   return true;
  }
  if (e.getAction() == MotionEvent.ACTION_UP) {
   return true;
  }
  return super.onTouchEvent(e);
 }
 
 public int getProgress() {
  return (int) (deg - 2);
 }
 
 public void setProgress(int x) {
  deg = x + 2;
 }
 
 public String getLabel() {
  return label;
 }
 
 public void setLabel(String txt) {
  label = txt;
 }
 
 public int getLineColor() {
  return lineColor;
 }
 
 public void setLineColor(int lineColor) {
  this.lineColor = lineColor;
 }
 
 public int getProgressColor() {
  return progressColor;
 }
 
 public void setProgressColor(int progressColor) {
  this.progressColor = progressColor;
 }
}

第三步:在MainActivity中,我们去写监听方法,查看旋钮的值:

?
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
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
 
 
/**
 * Created by 16857 on 2019/4/12.
 */
 
public class TextActivity extends Activity {
 AnalogController bassController;
 public static int themeColor = Color.parseColor("#B24242");
 private TextView tv;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
 
  bassController = (AnalogController) findViewById(R.id.controllerBass);
  tv = (TextView)findViewById(R.id.tv);
 
  bassController.setLabel("BASS");
 
  bassController.circlePaint2.setColor(themeColor);
  bassController.linePaint.setColor(themeColor);
  bassController.invalidate();
  bassController.linePaint.setColor(themeColor);
 
  bassController.setOnProgressChangedListener(new AnalogController.onProgressChangedListener() {
   @Override
   public void onProgressChanged(int progress) {
    tv.setText(progress+"");
   }
  });
 
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/cf8833/article/details/89240378

延伸 · 阅读

精彩推荐
  • AndroidAndroid编程之软件的安装和卸载方法

    Android编程之软件的安装和卸载方法

    这篇文章主要介绍了Android编程之软件的安装和卸载方法,涉及Android编程实现软件的安装、权限修改及卸载的相关技巧,具有一定参考借鉴价值,需要的朋友可...

    wiseideal3992021-04-18
  • AndroidAndroid编程之Sdcard相关代码集锦

    Android编程之Sdcard相关代码集锦

    这篇文章主要介绍了Android编程之Sdcard相关代码集锦,包括Android针对sd卡的存取、检测、相关信息获取等操作技巧,具有一定参考借鉴价值,需要的朋友可以参考...

    stevenhu_2234652021-04-13
  • AndroidAndroid线程管理之ActivityThread

    Android线程管理之ActivityThread

    线程通信、ActivityThread及Thread类是理解Android线程管理的关键。通过本文给大家介绍Android线程管理之ActivityThread 的相关知识,对android线程管理相关知识感兴...

    yh_thu6162021-05-13
  • AndroidAndroid Fragment的使用方法(翻译)

    Android Fragment的使用方法(翻译)

    这篇文章主要介绍了Android Fragment的使用方法,官方文档的翻译,需要的朋友可以参考下...

    Android开发网8582021-03-14
  • AndroidAndroid编程心得分享——JSON学习过程

    Android编程心得分享——JSON学习过程

    在我们初步学习JSON时我们都知道JSON作为现在比较流行的数据交换格式,有着它的许多优点,这里将我学习JSON的过程记录如下...

    Android开发网3682021-01-25
  • AndroidAndroid读取手机通讯录联系人到自己项目

    Android读取手机通讯录联系人到自己项目

    这篇文章主要为大家详细介绍了Android读取手机通讯录联系人到自己项目,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考...

    MagicMHD10402022-03-08
  • Androidandroid教程viewpager自动循环和手动循环

    android教程viewpager自动循环和手动循环

    这篇文章主要介绍了android的viewpager自动循环和手动循环示例,需要的朋友可以参考下...

    Android开发网5472021-02-26
  • AndroidAndroid画个时钟玩玩

    Android画个时钟玩玩

    这篇文章主要向大家介绍了Android画时钟的方法,内容很详细,分享了每一个制作步骤,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    hellsam6052021-05-06