RadioGroup变为按钮工具条

2023-10-14 11:39

本文主要是介绍RadioGroup变为按钮工具条,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

xml设置
复制代码
<RadioGroup android:id="@+id/MusicList_RadioGroup"android:orientation="horizontal" android:layout_alignParentBottom="true"android:layout_width="match_parent" android:layout_height="wrap_content"android:padding="2.0dip"android:background="@drawable/radiogroup_bg"><RadioButton android:id="@+id/MusicList_RadioGroup_next" android:drawableLeft="@drawable/radiogroup_next"android:text="@string/Text_radiogroup_next"android:textSize="15.0dip"android:layout_weight="1.0" android:button="@null"android:layout_width="wrap_content" android:layout_height="wrap_content"/>        <RadioButton android:id="@+id/MusicList_RadioGroup_playAndpuse" android:drawableLeft="@drawable/radiogroup_play"android:text="@string/Text_radiogroup_play"android:textSize="15.0dip"android:layout_weight="1.0" android:button="@null"android:layout_width="wrap_content" android:layout_height="wrap_content"/>                <RadioButton android:id="@+id/MusicList_RadioGroup_previous" android:drawableLeft="@drawable/radiogroup_previous"android:text="@string/Text_radiogroup_previous"android:textSize="15.0dip"android:layout_weight="1.0" android:button="@null" android:layout_width="wrap_content" android:layout_height="wrap_content"/>            </RadioGroup>
复制代码

绑定监听的代码  

复制代码
        //绑定监听器
        MusicListTable_RadioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener(){public void onCheckedChanged(RadioGroup arg0, int rid) {switch(rid){case R.id.MusicList_RadioGroup_next://下一首
                        break;case R.id.MusicList_RadioGroup_previous://上一首
                        break;case R.id.MusicList_RadioGroup_playAndpuse://播放或暂停
                        if(isPlaying){Drawable dr= res.getDrawable(R.drawable.radiogroup_play);//setBounds如果不设置的话setCompoundDrawables就会没有图片显示出来,所以一定要设置一次
                            dr.setBounds(0, 0, dr.getMinimumWidth(), dr.getMinimumHeight());palyAndpuse.setCompoundDrawables(dr, null,null, null);//为RadioButton设置图片,左右上下对应xml的android:drawableLeft="@drawable/XXX"
                            isPlaying=false; }else{Drawable dr= res.getDrawable(R.drawable.radiogroup_puse);dr.setBounds(0, 0, dr.getMinimumWidth(), dr.getMinimumHeight());palyAndpuse.setCompoundDrawables(dr, null,null, null);isPlaying=true;                 }arg0.clearCheck();//清除选择,如果不清除的话不能重复选择同一个Radiobutton
                        break;}}});}
复制代码

效果:

点击播放不断切换两个图片  


转自:http://www.cnblogs.com/helloandroid/archive/2011/08/23/2151164.html

这篇关于RadioGroup变为按钮工具条的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/210241

相关文章

C# 防止按钮botton重复“点击”的方法

在使用C#的按钮控件的时候,经常我们想如果出现了多次点击的时候只让其在执行的时候只响应一次。这个时候很多人可能会想到使用Enable=false, 但是实际情况是还是会被多次触发,因为C#采用的是消息队列机制,这个时候我们只需要在Enable = true 之前加一句 Application.DoEvents();就能达到防止重复点击的问题。 private void btnGenerateSh

PNG透明背景按钮的实现(MFC)

问题描述: 当前要在对话框上添加一个以两个PNG图片作为背景的按钮,PNG图的背景是透明的,按钮也要做出相同的透明效果。并且鼠标不在按钮上时,按钮显示"bg1.png";鼠标移动到按钮上时,按钮显示"bg2.png" 开发环境为VS2010。 解决办法: 使用GDI+库装载PNG图片,并使用MFC Button Control和CMFCButton类结合,调用CMFCButton

龙芯+FreeRTOS+LVGL实战笔记(新)——05部署主按钮

本专栏是笔者另一个专栏《龙芯+RT-Thread+LVGL实战笔记》的姊妹篇,主要的区别在于实时操作系统的不同,章节的安排和任务的推进保持一致,并对源码做了改进和优化,各位可以先到本人主页下去浏览另一专栏的博客列表(目前已撰写36篇,图1所示),再决定是否订阅。此外,也可以前往本人在B站的视频合集(图2所示)观看所有演示视频,合集首个视频链接为: 借助RT-Thread和LVGL

致远个性化之--发起流程页面,去掉【查看流程】按钮

需求 近期在做的项目中,遇到一个需求,想把发起流程页面中的【查看流程】按钮去掉,只让员工预测流程,知道自己的事项流程走向,不让看全局流程图。包含PC端和移动端,以及微协同端。 如下图效果示例: 实现 此需求,只能通过修改页面代码实现。在此不分析实现过程,现把具体实现方式呈现如下,各位如有需求可参照设置。适用版本V9.0,其他版本未进行测试,估计不会有大的差别! PC端 找到文件

如何在Excel中创建一个VBA宏,并设置一个按钮来执行这个宏

下面是一个详细的步骤指南 步骤1:创建VBA宏 1. 打开Excel并按 `Alt + F11` 打开VBA编辑器。 2. 在VBA编辑器中,选择 `Insert` > `Module` 来插入一个新的模块。 3. 将以下代码粘贴到模块中: ```vba Sub CreateNewSheet()' 声明一个工作表对象Dim newSheet As Worksheet' 添加一个新的工作表S

Vue3实现点击按钮下载头像功能

要实现的效果 点击头像右上角弹出选项,点击保存图片可以把图片下载保存到本地 实现方式关键代码 1.第一种,直接创建a标签给头像地址。进行下载 // 创建一个隐藏的 <a> 标签const link = document.createElement("a");link.href = headPic; // 设置为图片的 URLlink.download = "avatar.jpg"; //

Android ToggleButton 开关按钮

ToggleButton相关属性,方法android:textOn="On"android:textOff="Off"android:checked="true"setChecked(boolean) package shortcut.song.com.myapplication;import android.support.v7.app.AppCompatActivity;impo

Android RadioButton 单选按钮

RadioGroup 单选按钮组, 可以包含多个单选按钮,当单选按钮选中状态改变时会触发setOnCheckedChangeListener package shortcut.song.com.myapplication;import android.graphics.Color;import android.support.v7.app.AppCompatActivity;imp

delphi如何给按钮添加单键快捷键(F1~F12)

用action 讲按钮窗体的Keypreview设为True,然后加如下代码 Delphi/Pascal code ? 1 2 3 4 5 6 procedure  TForm1 . FormKeyDown(Sender: TObject;  var  Key:  Word ;    Shift: TShiftState); begin    i

监听手机app返回按钮执行后退

document.addEventListener('plusready', function(){//console.log("所有plus api都应该在此事件发生后调用,否则会出现plus is undefined。"var w = plus.webview.create('https://www.xxxxxxxx.cn/?d=we');plus.webview.currentWe