View CorrectChildDrawingViewPager.java
This file contains 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
package android.support.v4.view; | |
import android.content.Context; | |
import android.util.AttributeSet; | |
import android.view.View; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.Comparator; |
View AbstractActivity.java
This file contains 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 abstract class AbstractActivity extends FragmentActivity implements FragmentUtils.ActivityForResultStarter | |
{ | |
private SparseArray<Bundle> requests; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
if (savedInstanceState == null) |
View AndroidManifest.xml
This file contains 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.myapp"> | |
<!-- {packagename} will be replaced by the actual packagename --> | |
<!-- Custom permission to safely send broadcasts between processes --> | |
<permission | |
android:name="{packagename}.permission.RECEIVE_BROADCASTS" | |
android:protectionLevel="signature"/> |