Bud
dy.. as i have begun reading it... it seems so lovely as a perfect tutorial.. wanted to thank you for the effort you took in explaining... am letting it sink in slowly... thanx again.. going to keep learning it slowly and will then try to make something out of it so it sticks
For eg... was also reading the other SDK post you linked me to on top
found this
public void adjustVolume (int direction, int flags)
Adjusts the volume of the most relevant stream. For example, if a call is active, it will have the highest priority regardless of if the in-call screen is showing. Another example, if music is playing in the background and a call is not active, the music stream will be adjusted.
This method should only be used by applications that replace the platform-wide management of audio settings or the main telephony application.
DirectionThe direction to adjust the volume. One of
ADJUST_LOWER,
ADJUST_RAISE, or
ADJUST_SAME.
Flags
One or more flags.
Now... for starters how could i use something like this
would it be
Dim r As Reflector
r.Target = r.GetContext
r.Target = r.RunMethod2("getSystemService", "audio", "java.lang.String")
Return r.RunMethod("adjustVolume")
...OR... something like this???
Dim r As Reflector
r.Target = r.GetContext
r.Target = r.RunMethod2("getSystemService", "audio", "java.lang.String")
Return r.RunMethod3("adjustVolume", 1, type1? , 0,type2?)
you see what i mean is im still not sure what to do with Type1, type2?...
also the ("getSystemService", "audio", "java.lang.String") part i got cz thats what Erel showed me...
but on my own.. it'd be a bouncer!