2021-01-01から1ヶ月間の記事一覧

Sequential timer manual

Basic Usage About continuous timer playbackPress the triangular play button at the right end of the items in the list screen (the first screen displayed when you start the app). Alternatively, tap an item other than the two ends of the ite…

連続タイマー説明書

基本的な使い方 連続タイマーの再生についてリスト画面(アプリを起動したときに最初に表示される画面)に並んでいる項目の右端にある三角の再生ボタンを押す。または項目の両端以外をタップして実行画面に移ってから画面下のスタートボタンを押す。タップし…

Android 検索が強力なメモアプリをつくりました(入れ子フォルダ、タグ、ファイル内検索、置換、ロック、編集画面広告非表示など)

全文検索で指定可能な検索条件は サブフォルダ内の検索 ゴミ箱 色 時間(作成、更新、閲覧) タイトル(and or) 本文(and or) タグ(and or) 検索条件の入力画面 ファイル内検索・置換もできます。正規表現も使えます。 その他の主な機能 階層化可能なフ…

android sqlite like 大文字小文字を区別する方法

PRAGMA case_sensitive_like = 1 を実行する SQLiteOpenHelperを使うなら下記のようにすればいい @Overridepublic void onOpen(SQLiteDatabase db) { super.onOpen(db); db.execSQL("PRAGMA case_sensitive_like = 1");} SQLiteのLIKEは、デフォルトだと大文…