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
| import android.os.AsyncTask; | |
| /** | |
| * AsyncTaskの基底クラス | |
| * | |
| * @param <Params> | |
| * @param <Progress> | |
| * @param <Result> | |
| * @author Kensuke | |
| */ |
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
| import org.json.JSONArray; | |
| import org.json.JSONException; | |
| import org.json.JSONObject; | |
| /** | |
| * JSONObjectを扱うUtilクラス<br> | |
| * 基本型もオブジェクト型として返却するため項目がnullの場合にはnullを返す | |
| * | |
| * @author KCMEUser | |
| */ |
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
| import android.database.Cursor; | |
| /** | |
| * データベースカーソルのUtilクラス<br> | |
| * 基本型もオブジェクト型として返却するためカラムがnullの場合にはnullを返す | |
| * | |
| * @author KCMEUser | |
| */ | |
| public class CursorUtil { |
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
| import android.Manifest; | |
| import android.annotation.SuppressLint; | |
| import android.annotation.TargetApi; | |
| import android.content.Context; | |
| import android.content.pm.PackageInfo; | |
| import android.content.pm.PackageManager.NameNotFoundException; | |
| import android.database.Cursor; | |
| import android.graphics.drawable.Drawable; | |
| import android.net.Uri; | |
| import android.net.wifi.WifiInfo; |
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
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Typeface; | |
| import android.util.AttributeSet; | |
| import android.widget.TextView; | |
| import apps.ignisamerica.flashlight.R; | |
| /** | |
| * フォント設定可能なTextViewクラス |
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
| import android.content.res.AssetManager; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class SqlUtil { |
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
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Canvas; | |
| import android.graphics.Color; | |
| import android.graphics.Paint; | |
| import android.graphics.RectF; | |
| import android.os.Parcel; | |
| import android.os.Parcelable; | |
| import android.util.AttributeSet; | |
| import android.util.TypedValue; |
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
| import android.app.Activity; | |
| import android.app.DialogFragment; | |
| import android.os.Bundle; | |
| import android.support.v4.app.Fragment; | |
| /** | |
| * コールバックを持つダイアログの基底クラス<br> | |
| * | |
| * @param <Interface> | |
| * @author Kensuke |
OlderNewer