本文整理汇总了Java中info.guardianproject.cacheword.ICacheWordSubscriber类的典型用法代码示例。如果您正苦于以下问题:Java ICacheWordSubscriber类的具体用法?Java ICacheWordSubscriber怎么用?Java ICacheWordSubscriber使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ICacheWordSubscriber类属于info.guardianproject.cacheword包,在下文中一共展示了ICacheWordSubscriber类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: onCreate
import info.guardianproject.cacheword.ICacheWordSubscriber; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
mApp = (ImApp)getApplication();
getSherlock().getActionBar().hide();
setContentView(R.layout.activity_lock_screen);
mCacheWord = new CacheWordActivityHandler(mApp, (ICacheWordSubscriber)this);
mViewCreatePassphrase = findViewById(R.id.llCreatePassphrase);
mViewEnterPassphrase = findViewById(R.id.llEnterPassphrase);
mEnterPassphrase = (EditText) findViewById(R.id.editEnterPassphrase);
mNewPassphrase = (EditText) findViewById(R.id.editNewPassphrase);
mConfirmNewPassphrase = (EditText) findViewById(R.id.editConfirmNewPassphrase);
ViewFlipper vf = (ViewFlipper) findViewById(R.id.viewFlipper1);
LinearLayout flipView1 = (LinearLayout) findViewById(R.id.flipView1);
LinearLayout flipView2 = (LinearLayout) findViewById(R.id.flipView2);
mSlider = new TwoViewSlider(vf, flipView1, flipView2, mNewPassphrase, mConfirmNewPassphrase);
}
开发者ID:prive,项目名称:prive-android,代码行数:27,代码来源:LockScreenActivity.java
示例2: onCreate
import info.guardianproject.cacheword.ICacheWordSubscriber; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mApp = (ImApp)getApplication();
mHandler = new MyHandler(this);
Intent intent = getIntent();
mDoLock = ACTION_LOCK_APP.equals(intent.getAction());
if (mDoLock) {
shutdownAndLock(this);
return;
} else if (Panic.isTriggerIntent(intent)) {
if (PanicResponder.receivedTriggerFromConnectedApp(this)) {
if (Preferences.uninstallApp()) {
// lock and delete first for rapid response, then uninstall
shutdownAndLock(this);
PanicResponder.deleteAllAppData(this);
Intent uninstall = new Intent(Intent.ACTION_DELETE);
uninstall.setData(Uri.parse("package:" + getPackageName()));
startActivity(uninstall);
} else if (Preferences.clearAppData()) {
// lock first for rapid response, then delete
shutdownAndLock(this);
PanicResponder.deleteAllAppData(this);
} else if (Preferences.lockApp()) {
shutdownAndLock(this);
}
// TODO add other responses here, paying attention to if/else order
} else if (PanicResponder.shouldUseDefaultResponseToTrigger(this)) {
if (Preferences.lockApp()) {
shutdownAndLock(this);
}
}
// this Intent should not trigger any more processing
finish();
return;
}
mSignInHelper = new SignInHelper(this, mHandler);
mDoSignIn = intent.getBooleanExtra(EXTRA_DO_SIGNIN, true);
AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
mCacheWord = new CacheWordHandler(this, (ICacheWordSubscriber)this);
mCacheWord.connectToService();
// if we have an incoming contact, send it to the right place
String scheme = intent.getScheme();
if(TextUtils.equals(scheme, "xmpp"))
{
intent.setClass(this, AddContactActivity.class);
startActivity(intent);
finish();
return;
}
}
开发者ID:zom,项目名称:Zom-Android,代码行数:61,代码来源:RouterActivity.java
示例3: connectToCacheWord
import info.guardianproject.cacheword.ICacheWordSubscriber; //导入依赖的package包/类
private void connectToCacheWord ()
{
mCacheWord = new CacheWordActivityHandler(this, (ICacheWordSubscriber)this);
mCacheWord.connectToService();
}
开发者ID:prive,项目名称:prive-android,代码行数:9,代码来源:WelcomeActivity.java
示例4: onCreate
import info.guardianproject.cacheword.ICacheWordSubscriber; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
mApp = (ImApp)getApplication();
checkCustomFont ();
setContentView(R.layout.activity_lock_screen);
if (getIntent() != null && getIntent().getAction() != null)
mAction = getIntent().getAction();
mCacheWord = new CacheWordHandler(mApp, (ICacheWordSubscriber)this);
mCacheWord.connectToService();
mViewCreatePassphrase = findViewById(R.id.llCreatePassphrase);
mViewEnterPassphrase = findViewById(R.id.llEnterPassphrase);
mEnterPassphrase = (EditText) findViewById(R.id.editEnterPassphrase);
mNewPassphrase = (EditText) findViewById(R.id.editNewPassphrase);
mConfirmNewPassphrase = (EditText) findViewById(R.id.editConfirmNewPassphrase);
ViewFlipper vf = (ViewFlipper) findViewById(R.id.viewFlipper1);
LinearLayout flipView1 = (LinearLayout) findViewById(R.id.flipView1);
LinearLayout flipView2 = (LinearLayout) findViewById(R.id.flipView2);
mSlider = new TwoViewSlider(vf, flipView1, flipView2, mNewPassphrase, mConfirmNewPassphrase);
mBtnSkip = (TextView)findViewById(R.id.btnSkip);
mBtnSkip.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mHandler.post(new Runnable ()
{
public void run ()
{
LockScreenActivity.this.finish();
}
});
}
});
if (mAction.equals(ACTION_CHANGE_PASSPHRASE))
{
changePassphrase();
}
//not set color
final SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(this);
int themeColorBg = settings.getInt("themeColorBg",-1);
if (themeColorBg != -1)
findViewById(R.id.llRoot).setBackgroundColor(themeColorBg);
}
开发者ID:zom,项目名称:Zom-Android,代码行数:66,代码来源:LockScreenActivity.java
注:本文中的info.guardianproject.cacheword.ICacheWordSubscriber类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论