スキップしてメイン コンテンツに移動

Pattern Calendar for Android

English Page /日本語ページ

Pattern Calendar is an application to post the Google Calendar the fixed form schedule (Pattern) created in advance.  This is useful for post schedule, such as occasional meeting and part-time job.




Security checks by a third party


Free Version Update History

  • Version 0.8.0 (released 2012-10-06 )
    First release.

About Basic Operation

Calendar is displayed when you start the app.


Touch any date, a dialog will appear. You can check the check box of that list, Pattern will be posted to Google Calendar. In addition, the place you checked the color of the pattern is reflected in the calendar. A check is removed to delete. 



If you want to edit a pattern, touch of the "Edit Pattern" on the menu.



Pattern list is displayed.


If you want to editing an existing pattern, touch the items in the list. If you want to add a new pattern, touch the Add button.

Items that can be set are as follows:
  • Title
  • Start time and End time. ( or All day )
  • Pattern Color (for this app display)
  • Where
  • Description
  • Target calendar
  • Reminders (Up to five items)




About Sync

Schedule that have been posted by this app, go to Calendar in the terminal are reflected immediately, there is a time difference of slightly to reflect a Google calendar to be viewed in the browser, etc.. You can be done if you want to take effect immediately, and then touch the Sync of the menu.


コメント

このブログの人気の投稿

Javaでprivateなfieldやmethodにアクセスする

JUnitでテストしてると、privateなフィールドにアクセスして、値を参照したりセットしたりしたくなるわけですが、よく使うのでメモしておきます。 例えば、次のような対象のクラスがあるとします。 public class ParentClass { private String hoge = "ParentClass!!"; public void dispMsg() { System.out.println("dispMsg:" + hoge); } private void privateDispMsg(String msg) { System.out.println("dispMsg:" + msg); } }

GolangでWindows GUIアプリケーション

GUIアプリ作成の前提 社内ツールとしてexeで配布 開発環境はGoLandを使う 社内ツールとしてexeを配布ということであれば、Visual StudioでC#による開発だと思います。しかしながら、Go言語を習得したいのと、GoLandの補完機能が便利で、Android Studio使っていたこともあり、とっつきやすいという点からGo縛りでGUIアプリケーションを考えたいと思います。 lxn/walk Windows application library kit for Go. Windows向けしか考えていないので、まずこのライブラリなのですが、ボタンやコンボボックスが思ったように並ばなかったり、手軽にイメージボタンを配置したりなど、簡単にレイアウトを変更できない課題に直面しました。レイアウト作成だけで時間を取られてしまいます。そう言えば、Androidアプリ開発のときは、XMLでデザイン部分を切り離してたのを思い出して、今回の調査の運びとなりました。 fyne-io/fyne Cross platform native GUIs designed for Go based on Material Design. Supports: Linux, macOS, Windows, BSD, iOS and Android. walkと比べると、クロスプラットフォームで作成できるのですが、こちらもコードの中にデザインを書いていく形でした。 therecipe/qt therecipe/qt allows you to write Qt applications entirely in Go or JavaScript. Qt Creatorなるものがあるようで、デザイン部分を切り離せる印象はあるものの、最新のPCでもビルドに時間がかかるようで、学習コストもかかるという記事を見かけて断念しました。 どうしたものかとツイートしましたら、下記のようにご助言をいただいた。 同じ課題に対し色々試した結果、PWAのフルキャッシュドに落ち着いた。中身はGo+WASMで。 https://t.co/e60whDTV16 — のぼのぼ📡 (@nobonobo) July 21, 2020 PWA 早速調べてみました。Googleが進めているプロジェクトで、ネイティブアプリのよ

Eclipseの高速化メモ

Eclipseが重いと一言に言っても、いろいろな工程での話があると思いますが、過去記事のなども含めてこの記事にピックアップしておきたいと思います。以下はWindows環境での話です。