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
05-24 17:44:17.270 1388-1388/com.amlcurran.messages D/StrictMode﹕ StrictMode policy violation; ~duration=233 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=2335 violation=2 | |
at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1135) | |
at libcore.io.BlockGuardOs.open(BlockGuardOs.java:106) | |
at libcore.io.IoBridge.open(IoBridge.java:393) | |
at java.io.FileOutputStream.<init>(FileOutputStream.java:88) | |
at java.io.FileOutputStream.<init>(FileOutputStream.java:73) | |
at com.android.server.pm.Settings.writePackageRestrictionsLPr(Settings.java:1062) | |
at com.android.server.pm.PackageManagerService.findPreferredActivity(PackageManagerService.java:3086) | |
at com.android.server.pm.PackageManagerService.chooseBestActivity(PackageManagerService.java:2945) | |
at com.android.server.pm.PackageManagerService.resolveIntent(PackageManagerService.java:2886) |
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
@Override | |
public void onAttach(Activity activity) { | |
super.onAttach(activity); | |
messageLoader = new ProviderHelper<MessagesLoaderProvider>(MessagesLoaderProvider.class).get(activity).getMessagesLoader(); | |
} |
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
05-19 18:42:40.856 11430-11430/com.amlcurran.messages D/StrictMode﹕ StrictMode policy violation; ~duration=144 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=2079 violation=2 | |
at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1135) | |
at libcore.io.BlockGuardOs.read(BlockGuardOs.java:148) | |
at libcore.io.IoBridge.read(IoBridge.java:425) | |
at java.io.RandomAccessFile.read(RandomAccessFile.java:287) | |
at java.util.zip.ZipFile$RAFStream.read(ZipFile.java:464) | |
at java.io.InputStream.read(InputStream.java:162) | |
at java.io.BufferedInputStream.fillbuf(BufferedInputStream.java:142) | |
at java.io.BufferedInputStream.read(BufferedInputStream.java:288) | |
at libcore.io.Streams.readFully(Streams.java:81) |
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
package com.example.demolhh; | |
import android.app.Activity; | |
import android.os.AsyncTask; | |
import android.os.Bundle; | |
public class MainActivity extends Activity { | |
private LoadHideHelper mHideHelper; |
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
/* | |
* Copyright (c) 2013 Alex Curran | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
/** | |
* Copyright 2013 Alex Curran | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
/** | |
* Copyright 2013 Alex Curran | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
package com.espian.formulae.data; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: alexcurran | |
* Date: 18/02/2013 | |
*/ | |
public class ListItem { | |
public String label; |
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
/* Copyright 2013 Alex Curran | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, |