如何编写* .kl文件并复制到root系统上的/ system

时间:2017-10-04 21:06:56

标签: android xamarin.android adb root kiosk-mode

我有以下问题。

我需要为特定应用锁定平板电脑。我在KioskMode中使用我的应用程序,但是我需要阻止一些按钮,“Switch_app”,“Volume_UP”,“Volume_DOWN”等。

我可以通过访问ES文件资源管理器并手动更改文件,保存并重新启动平板电脑来阻止这些按钮。

但是,我想以程序方式更改此文件。

我尝试了以下内容:

        {
            using (StreamReader sr = new StreamReader("/system/usr/keylayout/Generic.kl"))
            {
                string line;
                // Read and display lines from the file until the end of 
                // the file is reached.
                while ((line = sr.ReadLine()) != null)
                {
                    if (line.Contains("VOLUME"))
                    {
                        line = $"# {line}";

                    }
                    text += line + "\n";
                    System.Console.WriteLine(text);
                }
            }
            CreateFile();

            TransferFile();
        };


    void CreateFile()
    {


        string sdCard = Android.OS.Environment.ExternalStorageDirectory.AbsolutePath;
        string path = Path.Combine(sdCard, "MyFolder/Generic.kl");
        // This text is added only once to the file.
        if (!System.IO.File.Exists(path))
        {
            // Create a file to write to.
            System.IO.File.WriteAllText(path, text);
        }
    }

要将创建的文件传输到/ system / usr / Keylayout,我使用:

Java.Lang.Runtime.GetRuntime().Exec("su -c mount -o rw,remount,rw /system");
Java.Lang.Runtime.GetRuntime().Exec("su -c rm system/usr/keylayout/Generic.kl");
Java.Lang.Runtime.GetRuntime().Exec("su -c mv /storage/emulated/0/MyFolder/Generic.kl system/usr/keylayout/Generic.kl");

当我使用这些命令时,文件被复制,但是当我重新启动平板电脑时,不再有物理按钮工作。所以我认为这是与删除旧文件和添加新文件有关的一些问题。

任何帮助都会受到欢迎,也会受到很多想法。

谢谢大家。

2 个答案:

答案 0 :(得分:2)

如果您使用sed进行编辑,则无需担心所有权,权限等:

GetRuntime().Exec("su 0 mount -o remount,rw /system");
GetRuntime().Exec("su 0 sed -i 's/^[^#]*VOLUME_DOWN/# &/' /system/usr/keylayout/Generic.kl");
GetRuntime().Exec("su 0 sed -i 's/^[^#]*VOLUME_UP/# &/' /system/usr/keylayout/Generic.kl");
GetRuntime().Exec("su 0 sed -i 's/^[^#]*APP_SWITCH/# &/' /system/usr/keylayout/Generic.kl");

你仍然需要重启。

答案 1 :(得分:0)

这是Rooted设备的解决方案

        Java.Lang.Runtime.GetRuntime().Exec("su -c mount -o rw,remount,rw /system");
        Java.Lang.Runtime.GetRuntime().Exec("su -c rm system/usr/keylayout/Generic.kl");
        Java.Lang.Runtime.GetRuntime().Exec("su -c mv /storage/emulated/0/MyFolder/Generic.kl system/usr/keylayout/");
        **Java.Lang.Runtime.GetRuntime().Exec("su -c chmod 644 /system/usr/keylayout/Generic.kl");
        Java.Lang.Runtime.GetRuntime().Exec("su -c chown system.system /system/usr/keylayout/Generic.kl");**