Selaa lähdekoodia

[提交内容]:keyboardActivity首字母小写改成大写

wangyj18 9 vuotta sitten
vanhempi
commit
fdfbcf7b6c

BIN
ipu-client/res/drawable-hdpi/ic_launcher.png


BIN
ipu-client/res/drawable-mdpi/ic_launcher.png


BIN
ipu-client/res/drawable-xhdpi/ic_launcher.png


BIN
ipu-client/res/drawable-xxhdpi/ic_launcher.png


BIN
wade-mobile-func/libs/wade-mobile-com.jar


+ 2 - 2
wade-mobile-func/src/com/wade/mobile/func/MobileKeyboard.java

@ -7,7 +7,7 @@ import android.os.Bundle;
7 7
import android.os.Handler;
8 8

9 9
import com.wade.mobile.common.keyboard.KeyboardConstants;
10
import com.wade.mobile.common.keyboard.keyboardActivity;
10
import com.wade.mobile.common.keyboard.KeyboardActivity;
11 11
import com.wade.mobile.frame.IWadeMobile;
12 12
import com.wade.mobile.frame.plugin.Plugin;
13 13
import com.wade.mobile.util.EscapeUnescape;
@ -25,7 +25,7 @@ public class MobileKeyboard extends Plugin {
25 25
		functionName = param.getString(0);
26 26
		KeyboardConstants.handler = handler;
27 27

28
		Intent intent = new Intent(context, keyboardActivity.class);
28
		Intent intent = new Intent(context, KeyboardActivity.class);
29 29
		startActivityForResult(intent, KEYBORAD);
30 30
	}
31 31