This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected void onStart() { | |
if (DEBUG_LIFECYCLE) Slog.v(TAG, "onStart " + this); | |
mCalled = true; | |
if (!mLoadersStarted) { | |
mLoadersStarted = true; | |
if (mLoaderManager != null) { | |
mLoaderManager.doStart(); | |
} else if (!mCheckedForLoaderManager) { | |
mLoaderManager = getLoaderManager("(root)", mLoadersStarted, false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected void onCreate(Bundle savedInstanceState) { | |
if (DEBUG_LIFECYCLE) Slog.v(TAG, "onCreate " + this + ": " + savedInstanceState); | |
if (mLastNonConfigurationInstances != null) { | |
mAllLoaderManagers = mLastNonConfigurationInstances.loaders; | |
} | |
if (mActivityInfo.parentActivityName != null) { | |
if (mActionBar == null) { | |
mEnableDefaultActionBarUp = true; | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
language: objective-c | |
before_script: | |
- ./scripts/travis/add-key.sh | |
after_script: | |
- ./scripts/travis/remove-key.sh | |
after_success: | |
- ./scripts/travis/testflight.sh | |
env: | |
global: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
////////////////////////////////////////////////////////////////// | |
// | |
// log.php | |
// Log | |
// | |
// Copyright 2012 Gökhan Barış Aker | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static String generateCharacterTagByIndex(int index) | |
{ | |
return (Integer.toString(index + 14970)); | |
} | |
class NavigatableEditText extends EditText | |
{ | |
private WeakReference<View> navigationNext = null; | |
private WeakReference<View> navigationPrevious = null; | |
NewerOlder