当前位置: 首页 > 编程笔记 >

非常好看的android音量旋钮

徐君植
2023-03-14
本文向大家介绍非常好看的android音量旋钮,包括了非常好看的android音量旋钮的使用技巧和注意事项,需要的朋友参考一下

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

效果图:

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

第一步:先把布局写了:

<?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

 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中,我们去写监听方法,查看旋钮的值:

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+"");
   }
  });
 
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 我在android上使用APPRTCdemo应用程序。我试着让它播放来自另一个同龄人的声音,音量与Android设置中设置的音量一样大。因此,如果用户将设备静音,则不会听到音频。我几乎尝试了每一个Android API调用,但似乎对音量没有任何影响。以下是我尝试过的东西:AudioManager AudioManager=(AudioManager)_context.getSystemServic

  • 本文向大家介绍非常好用的sql语句(日常整理),包括了非常好用的sql语句(日常整理)的使用技巧和注意事项,需要的朋友参考一下 1. /* 得到trace文件路径和名称 */ 2./* 显示产生锁定的sql语句 */ 3./* 查看oracle隐藏参数 */ 4./* 根据系统中oracle的pid来查看sql */ 以上就是本文给大家分享几个比较好用sql语句,希望大家喜欢。

  • 我目前正在开发一个智能助手程序(基本上,它只是听用户说什么,然后根据用户说的内容对代码进行处理)。直到今天,当我切换到笔记本电脑时,它一直工作正常。程序不会打印出任何错误,但也不会打印出我说的话。我正在使用Python语音识别库3.8版。1.有人知道这个图书馆的替代品吗?如果是,请尝试解释我将如何“即时”使用它(无需先录制文件,然后将其发送到服务器,更像是实时语音)。 编辑:我忘了在帖子里说,我正

  • 我有MP3音频文件,其中包含电脑留下的语音邮件。 消息内容始终采用相同的格式,并由相同的计算机语音保留,内容仅略有变化: “你今天卖出了4辆车”(其中4辆可以是0到9之间的任意值)。 我一直在尝试建立Sphinx,但开箱即用的模型效果不太好。 然后,我尝试编写自己的声学模型,但还没有取得更好的成功(30%未被认可是我的最佳选择)。 我想知道语音识别对于这项任务来说是否有点过头了,因为我只有一个语音

  • 问题内容: 我想使用WWW类下载一个简单的json。我的问题是,在android设备中,它需要3到4秒才能完成任务,但是在编辑器中,它需要毫秒才能完成… 我做错了什么? 这是我的代码: PS1:我为两个设备使用了相同的网络。 PS2:Json文件小于1 KB。 问题答案: 没有设置可以加快速度。如果速度较慢,则说明它要么在移动设备上实施不佳,要么设备又旧又慢。请注意,您的计算机大多数时候都比移动设

  • 输出: 老兄?在谷歌上搜索了一小段时间,却没有发现任何关于这件事的信息。