From version 2014.12, we implemented Mobile Ads and Google Analytics. We changed to require the permissions of the following. - full network access - view network connections
Ads will not be shown at PRO-KEY users. Please read the privacy policy about Google Analytics.
[2014/10/01 v.2014.12] Refreshed app icon and UI design. Redesigned for Tablet devices. Integrated mobile ads and Google Analytics. Updated Chinese Resource. (Thanks to Eraserking!) Fixed some bugs.
[2014/05/05 v.2014.03] Added Directory-Bookmark on File Browser. Removed Box(V1) Connector support. Added the option to check for changes in the current file. (Need to update Connectors.) Added the option to show/hide hidden files. Added function to delete one item in the file history. Fixed some bugs.
[2013/12/15 v.0.3.36] 定型文の最大数を99に変更 Storage Access Frameworkに対応 (Android4.4のみ PROKEYユーザーのみ 実験段階) 'Emacs Org-mode'のキーワードを追加 (Thanks to Juan M. Gonzalez!) バグ修正
[2013/12/15 v.0.3.36] Changed the limit of Phrase feature 9 to 99. Added Storage Access Framework support. (Only Android4.4/PROKEY feature/experimanetal) Added 'Emacs Org-mode' keyword. (Thanks to Juan M. Gonzalez!) Fixed some bugs.
[2013/08/04 v.0.3.20] カラーピッカーを再設計 ファイル選択画面のソート指定を保存するように修正 韓国語リソースを更新 (Thanks to Noah!) 性能改善 バグ修正
[2013/08/04 v.0.3.20] Refactored Color Picker screen. Changed to save sort kind on File Selector screen. Updated Korean Resources. (Thanks to Noah!) Improved performance. Fixed some bugs.
// If we got the method we won't need the stuff below. return; } catch (NoSuchMethodException e) { // Oh well. We'll use the other mechanism below instead. }
final View home = activity.findViewById(android.R.id.home); if (home == null) { // Action bar doesn't have a known configuration, an OEM messed with things. return; }
final ViewGroup parent = (ViewGroup) home.getParent(); final int childCount = parent.getChildCount(); if (childCount != 2) { // No idea which one will be the right one, an OEM messed with things. return; }
final View first = parent.getChildAt(0); final View second = parent.getChildAt(1); final View up = first.getId() == android.R.id.home ? second : first;
private void setHomeAsUpIndicator(View view, int resId) { int homeid; if ( JotaTextEditor.sHoneycomb ){ homeid = android.R.id.home; }else{ homeid = R.id.abs__home; }
final View home = view.findViewById(homeid); if (home == null) { // Action bar doesn't have a known configuration, an OEM messed with things. return; }
final ViewGroup parent = (ViewGroup) home.getParent(); final int childCount = parent.getChildCount(); if (childCount != 2) { // No idea which one will be the right one, an OEM messed with things. return; }
final View first = parent.getChildAt(0); final View second = parent.getChildAt(1); final View up = first.getId() == homeid ? second : first;