ADSA.java
355 Bytes
package com.lotus.town.notify;
import com.controller.NotifyType;
/**
* 开屏广告Activity示例
*/
public class ADSA extends BaseSplashActivity {
@Override
protected int getFrom() {
return NotifyType.AD_NOTIFY;
}
@Override
protected String getDestActivity() {
return "com.lotus.town.clean.OtherActivity";
}
}