我想爲我最喜歡的Android應用程序之一製作圖標擴展包,並且我擁有的唯一源代碼是一些反編譯的源代碼。我不知道應該是什麼來代替「main.1 LOCAL1 =新Main.1(本)」解碼反編譯的源代碼對於Android
Gallery localGallery1 = (Gallery)findViewById(R.id.icon_gallery);
IconImageAdapter localIconImageAdapter = new IconImageAdapter(this);
localGallery1.setAdapter(localIconImageAdapter);
Main.1 local1 = new Main.1(this);
localGallery1.setOnItemClickListener(local1);
另外,我不太清楚是什麼Main.access $ 0或此$ 0的呼籲。 Eclipse在它們上拋出一個錯誤。
int i = Main.access$0(this.this$0)[paramInt].intValue();
雖然我寫我自己的代碼,我用這個來源作爲我的參考點。我只需要幫助清理垃圾,以更好地理解它。我需要知道Main.1 local1 = new Main.1(this)在說什麼。以及Main.access $ 0(this.this $ 0) 因爲main.1對於Java不正確。
你的問題是什麼? – abcde123483 2011-12-17 05:53:53
對不起。我需要知道Main.1 local1 = new Main.1(this)在說什麼。以及Main.access $ 0(this.this $ 0)。我在這裏看到,只有在反編譯的源代碼中才會顯示這樣的內容。 – AndroidKen 2011-12-17 06:01:30