【问题标题】:QR CODE - how to?二维码 - 如何?
【发布时间】:2018-06-02 16:25:47
【问题描述】:

我想隐藏二维码的结果... 例如:?re=123456789012&rr= 我只想显示 123456789012 并隐藏 ?re= 和 &rr 我正在阅读,人们说使用拆分方法,对吗?

protected void  onActivityResult(int requestCode,int resultCode,Intent data){
     IntentResult result = IntentIntegrator.parseActivityResult(requestCode,resultCode,data);
     if(result != null){
         if(result.getContents()==null){
             Toast.makeText(this,"cancelled", Toast.LENGTH_LONG).show();
         }
        else{
             resultado.setText(result.getContents());
         }
     }
     else {
         super.onActivityResult(requestCode,resultCode,data);
      }
     }

【问题讨论】:

    标签: android split qr-code


    【解决方案1】:

    尝试使用子字符串函数:-

    function:-

    private String getQR(String content)
    {
     return content.substring(4,15);    
    }
    

    function implementation:-

         if(result.getContents()==null){
             Toast.makeText(this,"cancelled", Toast.LENGTH_LONG).show();
         }
        else{
             resultado.setText(getQR(result.getContents())); // <- <-
         }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2011-11-06
      • 1970-01-01
      • 1970-01-01
      • 2019-05-23
      • 1970-01-01
      • 1970-01-01
      • 2022-07-20
      相关资源
      最近更新 更多