当前位置: 代码迷 >> Android >> 生手求指点下这段代码
  详细解决方案

生手求指点下这段代码

热度:39   发布时间:2016-04-27 23:51:25.0
新手求指点下这段代码啊
 protected void onCreate(Bundle paramBundle)
  {
    super.onCreate(paramBundle);
    setContentView(2130903042);
    this.b = this;
    this.b.setRequestedOrientation(1);
    getWindow().setFlags(128, 128);
    getWindow().setSoftInputMode(18);
    this.r = new h(this, (byte)0);
    this.e = ((LinearLayout)findViewById(2131296282));
    this.h = ((ScrollView)findViewById(2131296274));
    this.f = ((Button)findViewById(2131296280));
    this.f.setOnClickListener(this.r);
    this.g = ((Button)findViewById(2131296281));
    this.g.setOnClickListener(this.r);
    this.c = ((EditText)findViewById(2131296278));
    this.c.setText("01 02 03 04 05 06 07 08");
    this.d = ((EditText)findViewById(2131296279));
    this.d.setText("60");
    this.m = ((Spinner)findViewById(2131296276));
    this.o = getResources().getStringArray(2130968599);
    this.n = new ArrayAdapter(this, 17367048, this.o);
    this.n.setDropDownViewResource(17367049);
    this.m.setAdapter(this.n);
    this.m.setOnItemSelectedListener(this.s);
    getWindow().setSoftInputMode(18);
    SComboReaderActivity.a.a(this.b);
  }

h.java的代码如下
package scomboreader.demo.sdk2;

import android.view.View;
import android.view.View.OnClickListener;

final class h
  implements View.OnClickListener
{
  private h(MagneticCardActivity paramMagneticCardActivity)
  {
  }

  public final void onClick(View paramView)
  {
    if (paramView == MagneticCardActivity.b(this.a))
      MagneticCardActivity.c(this.a);
    while (paramView != MagneticCardActivity.d(this.a))
      return;
    MagneticCardActivity.e(this.a);
  }
}

我就问下这个this.a是什么鬼
------解决思路----------------------
这个是你反编译别的apk的代码,被混淆了,暂时看不出来a是什么
------解决思路----------------------
引用:
你们的意思是反编译的代码不能作为正常代码阅读  有可能少东西?


混淆后,代码中出现的一些变量,根本是无厘头的。不要读了。
  相关解决方案