zoukankan      html  css  js  c++  java
  • 4.5节_Android硬件访问服务使用反射

    修改编译选项,不包含这两个classes文件

    怎么使用反射访问硬件服务:

     修改代码

     

     

     

    虽然getService返回的是IBinder类,但invoke返回的是Object

      Object ledService = getService.invoke(null, "led");
      //iLedService = ILedService.Stub.asInterface(ServiceManager.getService("led"));
    
    (ServiceManager.getService("led"))
    --------->对应  Method getService = Class.forName("android.os.ServiceManager").getMethod("getService", String.class);
                Object ledService = getService.invoke(null, "led");

     
    其中  $表示内部类
    Method asInterface = Class.forName("android.os.ILedService$Stub").getMethod("asInterface", IBinder.class);
                proxy = asInterface.invoke(null, ledService);
    ledCtrl = Class.forName("android.os.ILedService$Stub$Proxy").getMethod("ledCtrl", int.class, int.class);

     设置过滤器,查看打印信息:

    package com.thisway.app_0001_leddemo;
    
    import android.os.RemoteException;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.widget.Button;
    import android.view.View;
    import android.widget.CheckBox;
    import android.widget.Toast;
    
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    //import android.os.ILedService;
    //import android.os.ServiceManager;
    import android.os.IBinder;
    
    public class MainActivity extends AppCompatActivity {
    
        private boolean ledon = false;
        private Button button = null;
        private CheckBox checkBoxLed1 = null;
        private CheckBox checkBoxLed2 = null;
        private CheckBox checkBoxLed3 = null;
        private CheckBox checkBoxLed4 = null;
        //private ILedService iLedService = null;
    
        Object proxy = null;
        Method ledCtrl = null;
    
        class MyButtonListener implements View.OnClickListener {
            @Override
            public void onClick(View v) {
                ledon = !ledon;
                if (ledon) {
                    button.setText("ALL OFF");
                    checkBoxLed1.setChecked(true);
                    checkBoxLed2.setChecked(true);
                    checkBoxLed3.setChecked(true);
                    checkBoxLed4.setChecked(true);
    
                    try {
                        for (int i = 0; i < 4; i++)
                            //iLedService.ledCtrl(i, 1);
                            ledCtrl.invoke(proxy, i, 1);
                    } catch (IllegalAccessException e) {
                        e.printStackTrace();
                    } catch (InvocationTargetException e) {
                        e.printStackTrace();
                    }
                }
                else {
                    button.setText("ALL ON");
                    checkBoxLed1.setChecked(false);
                    checkBoxLed2.setChecked(false);
                    checkBoxLed3.setChecked(false);
                    checkBoxLed4.setChecked(false);
    
                    try {
                        for (int i = 0; i < 4; i++)
                            //iLedService.ledCtrl(i, 0);
                            ledCtrl.invoke(proxy, i, 0);
                    } catch (IllegalAccessException e) {
                        e.printStackTrace();
                    } catch (InvocationTargetException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    
        public void onCheckboxClicked(View view) {
            // Is the view now checked?
            boolean checked = ((CheckBox) view).isChecked();
    
            try {
                // Check which checkbox was clicked
                switch(view.getId()) {
                    case R.id.LED1:
                        if (checked) {
                            // Put some meat on the sandwich
                            Toast.makeText(getApplicationContext(), "LED1 on", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(0, 1);
                            ledCtrl.invoke(proxy, 0, 1);
                        }
                        else {
                            // Remove the meat
                            Toast.makeText(getApplicationContext(), "LED1 off", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(0, 0);
                            ledCtrl.invoke(proxy, 0, 0);
                        }
                        break;
                    case R.id.LED2:
                        if (checked) {
                            // Put some meat on the sandwich
                            Toast.makeText(getApplicationContext(), "LED2 on", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(1, 1);
                            ledCtrl.invoke(proxy, 1, 1);
                        }
                        else {
                            // Remove the meat
                            Toast.makeText(getApplicationContext(), "LED2 off", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(1, 0);
                            ledCtrl.invoke(proxy, 1, 0);
                        }
                        break;
    
                    case R.id.LED3:
                        if (checked) {
                            // Put some meat on the sandwich
                            Toast.makeText(getApplicationContext(), "LED3 on", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(2, 1);
                            ledCtrl.invoke(proxy, 2, 1);
                        }
                        else {
                            // Remove the meat
                            Toast.makeText(getApplicationContext(), "LED3 off", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(2, 0);
                            ledCtrl.invoke(proxy, 2, 0);
                        }
                        break;
    
                    case R.id.LED4:
                        if (checked) {
                            // Put some meat on the sandwich
                            Toast.makeText(getApplicationContext(), "LED4 on", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(3, 1);
                            ledCtrl.invoke(proxy, 3, 1);
                        }
                        else {
                            // Remove the meat
                            Toast.makeText(getApplicationContext(), "LED4 off", Toast.LENGTH_SHORT).show();
                            //iLedService.ledCtrl(3, 0);
                            ledCtrl.invoke(proxy, 3, 0);
                        }
                        break;
                    // TODO: Veggie sandwich
                }
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            } catch (InvocationTargetException e) {
                e.printStackTrace();
            }
        }
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            button = (Button) findViewById(R.id.BUTTON);
    
            try {
                //iLedService = ILedService.Stub.asInterface(ServiceManager.getService("led"));
                Method getService = Class.forName("android.os.ServiceManager").getMethod("getService", String.class);
                Object ledService = getService.invoke(null, "led");
                Method asInterface = Class.forName("android.os.ILedService$Stub").getMethod("asInterface", IBinder.class);
                proxy = asInterface.invoke(null, ledService);
                ledCtrl = Class.forName("android.os.ILedService$Stub$Proxy").getMethod("ledCtrl", int.class, int.class);
            } catch (NoSuchMethodException e) {
                e.printStackTrace();
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            } catch (InvocationTargetException e) {
                e.printStackTrace();
            }
    
            checkBoxLed1 = (CheckBox) findViewById(R.id.LED1);
            checkBoxLed2 = (CheckBox) findViewById(R.id.LED2);
            checkBoxLed3 = (CheckBox) findViewById(R.id.LED3);
            checkBoxLed4 = (CheckBox) findViewById(R.id.LED4);
    
            button.setOnClickListener(new MyButtonListener());
    /*
            button.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    // Perform action on click
                    ledon = !ledon;
                    if (ledon)
                        button.setText("ALL OFF");
                    else
                        button.setText("ALL ON");
                }
            });
    */
        }
    
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.menu_main, menu);
            return true;
        }
    
        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            // Handle action bar item clicks here. The action bar will
            // automatically handle clicks on the Home/Up button, so long
            // as you specify a parent activity in AndroidManifest.xml.
            int id = item.getItemId();
    
            //noinspection SimplifiableIfStatement
            if (id == R.id.action_settings) {
                return true;
            }
    
            return super.onOptionsItemSelected(item);
        }
    }
  • 相关阅读:
    算数基本定理与质因数分解
    质数的两种筛法
    质数及其判法
    二十二、Spring MVC与Structs2的区别总结
    二十一、MVC的WEB框架(Spring MVC)
    二十、MVC的WEB框架(Spring MVC)
    十九、Spring框架(注解方式测试)
    十八、Spring框架(AOP)
    十七、Spring框架(IOC/DI)
    创建型模式篇(建造者模式Builder Pattern)
  • 原文地址:https://www.cnblogs.com/zhulinhaibao/p/7020284.html
Copyright © 2011-2022 走看看