Selaa lähdekoodia

包类名ipu化-修复

leijie 8 vuotta sitten
vanhempi
commit
ee6f8264fe

+ 14 - 14
display-client/AndroidManifest.xml

@ -79,7 +79,7 @@
79 79
        </activity>
80 80
        
81 81
        <activity
82
            android:name="com.wade.mobile.common.nfc.activity.NfcActivity">
82
            android:name="com.ai.ipu.mobile.common.nfc.activity.NfcActivity">
83 83
            
84 84
            <!-- <intent-filter>
85 85
                <action android:name="android.nfc.action.TECH_DISCOVERED" />
@ -101,23 +101,23 @@
101 101
        
102 102
        <!-- 对话框 -->
103 103
        <activity
104
            android:name="com.wade.mobile.ui.activity.CustomDialogActivity"
104
            android:name="com.ai.ipu.mobile.ui.activity.CustomDialogActivity"
105 105
            android:theme="@style/CustomDialogTheme" >
106 106
        </activity>
107 107
        <!-- 窗口 -->
108 108
        <activity
109
            android:name="com.wade.mobile.ui.activity.CustomWindowActivity">
109
            android:name="com.ai.ipu.mobile.ui.activity.CustomWindowActivity">
110 110
        </activity>
111 111
        <!-- openUrl -->
112 112
        <activity
113
            android:name="com.wade.mobile.ui.activity.OpenUrlActivity">
113
            android:name="com.ai.ipu.mobile.ui.activity.OpenUrlActivity">
114 114
        </activity>
115 115
        <!-- 打开自定义浏览器 -->
116 116
        <activity
117
            android:name="com.wade.mobile.common.browser.BrowserActivity">
117
            android:name="com.ai.ipu.mobile.common.browser.BrowserActivity">
118 118
        </activity>
119 119
        <!-- 侧滑菜单 -->
120
        <activity android:name="com.wade.mobile.ui.activity.SlidingMenuActivity"
120
        <activity android:name="com.ai.ipu.mobile.ui.activity.SlidingMenuActivity"
121 121
            android:theme="@style/SlidingMenuTheme" >
122 122
        </activity>
123 123
        <!-- 蓝牙分享 -->
@ -128,7 +128,7 @@
128 128
        </activity>
129 129
         -->
130 130
         <activity
131
             android:name="com.ai.ipu.bluetooth.activity.ShareByBluetoothActivity"
131
             android:name="com.ai.ipu.mobile.common.bluetooth.activity.ShareByBluetoothActivity"
132 132
             android:theme="@style/ShareApkDialogTheme">
133 133
         </activity>
134 134
          <!-- 二维码扫描 -->
@ -152,19 +152,19 @@
152 152
            android:screenOrientation="portrait" >
153 153
        </activity> -->
154 154
        <!-- 音乐播放服务 -->
155
        <service android:name="com.wade.mobile.common.audio.play.AudioPlayerService" />
155
        <service android:name="com.ai.ipu.mobile.common.audio.play.AudioPlayerService" />
156 156
        <!-- 录制声音
157 157
        <activity
158 158
            android:name="com.wade.mobile.common.audio.activity.AudioRecorderActivity"
159 159
            android:theme="@style/AudioDialogTheme" >
160 160
        </activity> -->
161 161
         <activity
162
            android:name="com.wade.mobile.common.simplemedia.activity.SARecorder"
162
            android:name="com.ai.ipu.mobile.common.simplemedia.activity.SARecorder"
163 163
            android:theme="@style/AudioDialogTheme" >
164 164
        </activity>
165 165
		<!-- 播放音乐 -->
166 166
        <activity
167
            android:name="com.wade.mobile.common.audio.activity.AudioPlayerActivity"
167
            android:name="com.ai.ipu.mobile.common.audio.activity.AudioPlayerActivity"
168 168
            android:theme="@style/AudioDialogTheme" >
169 169
        </activity>
170 170
        <!-- 标记地图 -->
@ -175,7 +175,7 @@
175 175
        <activity android:name="com.ai.ipu.map.activity.MarkMapActivity">
176 176
        </activity>
177 177
        <!-- 通讯录UI -->
178
        <activity android:name="com.wade.mobile.common.contacts.activity.ContactsActivity">
178
        <activity android:name="com.ai.ipu.mobile.common.contacts.activity.ContactsActivity">
179 179
        </activity>
180 180
        <!-- 设定位置 -->
181 181
        <!--         
@ -189,14 +189,14 @@
189 189
            android:screenOrientation="portrait">
190 190
        </activity>
191 191
        <!-- 键盘 -->
192
        <activity android:name="com.wade.mobile.common.keyboard.KeyboardActivity"
192
        <activity android:name="com.ai.ipu.mobile.common.keyboard.KeyboardActivity"
193 193
            android:theme="@android:style/Theme.Translucent">
194 194
        </activity>
195 195
        <!-- 手势锁 -->
196
        <activity android:name="com.wade.mobile.common.screenlock.ScreenUnlockActivity" 
196
        <activity android:name="com.ai.ipu.mobile.common.screenlock.ScreenUnlockActivity" 
197 197
            android:theme="@android:style/Theme.NoTitleBar">
198 198
        </activity> 
199
        <activity android:name="com.wade.mobile.common.screenlock.SetScreenLockActivity" 
199
        <activity android:name="com.ai.ipu.mobile.common.screenlock.SetScreenLockActivity" 
200 200
            android:theme="@android:style/Theme.NoTitleBar">
201 201
        </activity>
202 202
        <!-- 提示对话框 -->

+ 3 - 3
ipu-alertdialog/src/com/ai/ipu/alertdialog/func/MobileUIWithSAD.java

@ -2,8 +2,8 @@ package com.ai.ipu.alertdialog.func;
2 2
import org.json.JSONArray;
3 3
import org.json.JSONObject;
4 4

5
import com.wade.mobile.frame.IWadeMobile;
6
import com.wade.mobile.frame.plugin.Plugin;
5
import com.ai.ipu.mobile.frame.IIpuMobile;
6
import com.ai.ipu.mobile.frame.plugin.Plugin;
7 7

8 8
import android.graphics.Color;
9 9
import android.os.CountDownTimer;
@ -33,7 +33,7 @@ public class MobileUIWithSAD extends Plugin {
33 33
	public static final int material_blue_grey_80 = Color
34 34
			.parseColor("#ff37474f");
35 35
	public static final int warning_stroke_color = Color.parseColor("#F8BB86");
36
	public MobileUIWithSAD(IWadeMobile wademobile) {
36
	public MobileUIWithSAD(IIpuMobile wademobile) {
37 37
		super(wademobile);
38 38
	}
39 39
	/**

+ 3 - 3
ipu-bluetooth/src/com/ai/ipu/bluetooth/func/MobileNetWork.java

@ -8,9 +8,9 @@ import com.ai.ipu.bluetooth.listener.OnSearchDeviceListener;
8 8
import com.ai.ipu.bluetooth.util.BluetoothTool;
9 9
import com.ai.ipu.mobile.app.ApkUtil;
10 10
import com.ai.ipu.mobile.app.AppInfoUtil;
11
import com.ai.ipu.mobile.frame.IIpuMobile;
12
import com.ai.ipu.mobile.frame.plugin.Plugin;
11 13
import com.ai.ipu.mobile.ui.HintUtil;
12
import com.wade.mobile.frame.IWadeMobile;
13
import com.wade.mobile.frame.plugin.Plugin;
14 14

15 15
import android.bluetooth.BluetoothAdapter;
16 16
import android.bluetooth.BluetoothDevice;
@ -20,7 +20,7 @@ import android.widget.Toast;
20 20

21 21
public class MobileNetWork extends Plugin {
22 22

23
	public MobileNetWork(IWadeMobile wademobile) {
23
	public MobileNetWork(IIpuMobile wademobile) {
24 24
		super(wademobile);
25 25
	}
26 26


BIN
ipu-mobile-common/libs/ipu-mobile-framework-3.0.jar


BIN
ipu-mobile-common/libs/ipu-mobile-im.jar