0

所以我有一个 LG P920 我想修改 TI FMrX 应用程序以添加命令以通过 tinymix 路由音频这里是 shell 命令

# tinymix 6 120
# tinymix 66 7
# tinymix 67 7
# tinymix 73 2
# tinymix 74 2

二进制文件位于/system/bin/tinymix

所以我试图在java中暗示它我不确定它是否正确,但它是

 public static void RouteAudioOn()
    {
    String MIX = "tinymix";
    int DL1 = 6;
    int DL1Value = 120;
    int FMvol = 66;
    int Headsetvol = 67'
    int RightCh = 73;
    int LeftCh = 74;
    int SoundValue  = 7;
    int HeadsetValue = 8;
    int LineIn = 2

    Process process = Runtime.getRuntime().exec("su");
    DataOutputStream os = new DataOutputStream(process.getOutputStream());

    os.writeBytes(MIX+" "+DL1+" "+DL1Value"\n");
    os.writeBytes(MIX+" "+FMvol+" "+SoundValue"\n");
    os.writeBytes(MIX+" "+Headsetvol+" "+HeadsetValue"\n");
    os.writeBytes(MIX+" "+RightCh+" "+LineIn"\n");
    os.writeBytes(MIX+" "+LeftCh+" "+LineIn"\n");

    os.writeBytes("exit\n");
    os.flush();
    os.close();

    process.waitFor();
    }  

 public static void RouteAudioOff()
    {
    String MIX = "tinymix";
    int DL1 = 6;
    int DL1Value = 0;
    int FMvol = 66;
    int Headsetvol = 67'
    int RightCh = 73;
    int LeftCh = 74;
    int SoundValue  = 0;
    int HeadsetValue = 0;
    int LineIn = 0

    Process process = Runtime.getRuntime().exec("su");
    DataOutputStream os = new DataOutputStream(process.getOutputStream());

    os.writeBytes(MIX+" "+DL1+" "+DL1Value"\n");
    os.writeBytes(MIX+" "+FMvol+" "+SoundValue"\n");
    os.writeBytes(MIX+" "+Headsetvol+" "+HeadsetValue"\n");
    os.writeBytes(MIX+" "+RightCh+" "+LineIn"\n");
    os.writeBytes(MIX+" "+LeftCh+" "+LineIn"\n");

    os.writeBytes("exit\n");
    os.flush();
    os.close();

    process.waitFor();
    }  
4

1 回答 1

0

我是这样做的,没问题

boolean son=false 表示耳机,true 表示免提

public void RunAsRoot(boolean son) {
    Process p = null;
    ArrayList tmpCmd = new ArrayList();
    tmpCmd.add("chmod 777 /dev/radio0");
    tmpCmd.add("tinymix 6 120");
    tmpCmd.add("tinymix 66 4");
if(son){tmpCmd.add("tinymix 67 1");tmpCmd.add("tinymix 73 1");
tmpCmd.add("tinymix 74 0");tmpCmd.add("tinymix 68 28");tmpCmd.add("tinymix 75 2");tmpCmd.add("tinymix 76 2");}
else    {tmpCmd.add("tinymix 75 0");tmpCmd.add("tinymix 76 0");tmpCmd.add("tinymix 68 0");tmpCmd.add("tinymix 67 4");
tmpCmd.add("tinymix 73 2");
tmpCmd.add("tinymix 74 2");}

    try {
        p = Runtime.getRuntime().exec("su");
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    DataOutputStream os = new DataOutputStream(p.getOutputStream());            
    for (int i=0;i<tmpCmd.size();i++) {
       try {
        os.writeBytes(tmpCmd.get(i)+"\n");
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    }           
    try {
         os.writeBytes("exit\n");
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }  
    try {
        os.flush();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}   
于 2013-04-05T16:48:25.710 回答