Android------Button Add sound effects (two ways)

Source: Internet
Author: User

I added the bottom in the previous case "Android bottom navigation bar Bottomnavigationbar"

4 button Toggle to add sound

Come down and see the case

Use Add dependency

' com.ashokvarma.android:bottom-navigation-bar:1.3.0 '

Mode 1:

Private void Playmusic (int  musicid) {        = mediaplayer.create (this, musicid);        Music.start ();    }

Mode 2:

@SuppressLint ("Newapi")    Private voidInitsound () {Soundpool=NewSoundpool.builder (). build (); Soundid= Soundpool.load ( This, R.raw.qipao, 1); }    Private voidPlaySound () {Soundpool.play (Soundid,0.9f,//Left Ear Channel volume "0~1"0.9f,//Right Ear Channel volume "0~1"0,//Playback Priority "0 indicates lowest priority"0,//loop mode "0 means loop once, 1 means loop all the time, other means number +1 means the current number corresponds to the number of cycles"1//playback Speed "1 is normal, range from 0~2"        ); }

Use just call in the Ontabselected method of Mbottomnavigationbar:

Mbottomnavigationbar.settabselectedlistener (NewBottomnavigationbar.ontabselectedlistener () {@Override Public voidOntabselected (intposition) {                //Playmusic (R.RAW.QIPAO);//Mode 1PlaySound ();//Mode twoshowfragment (position); } @Override Public voidOntabunselected (intposition) {} @Override Public voidOntabreselected (intposition) {            }        });

Source Portal

Android------Button to add sound effects (two ways)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.