About ShortcutIconChange
ショートカットを作成する際、このアプリケーションが仲介を行い、
「アイコン」「ショートカット名」の変更を行うツール
※バージョンアップを行った際にショートカットが作成できない現象が発生した場合、一度アンインストールを行ってから再度インストールを行ってください。
■基本的な使用方法
○ホームにショートカットを作成する場合
1.アプリケーションの起動
2.ショートカットの一覧から選択
3.アイコン、名称の変更し確定する
○ランチャー等にショートカットを登録する場合、
1.ランチャー等のショートカット選択、このアプリを選択
2.このアプリのショートカット一覧から選択
3.アイコン、名称の変更し確定する
■ショートカットの「アイコン」「ショートカット名」変更画面
変更した内容がショートカットに反映されます
- アイコン
タップを行うとキャラリーの起動を行い、選択したアイコンに変更できます
- ショートカット名
作成されるショートカットの名称
※名称が空の場合、デフォルト名で作成します
- メニュー
・アプリ設定
アプリケーションの設定を表示
・アプリケーション一覧
ショートカット一覧→アプリケーション一覧に切替
・ショートカット一覧
アプリケーション一覧→ショートカット一覧に切替
・ファイルショートカット作成
ファイルショートカット作成画面に切替
■ファイルショートカット作成画面
ファイル自身へのショートカットを作成します
- ファイルパス
ファイルへのパスを入力します
※「F」ボタンを押下するとファイル選択ダイアログが表示されます
- ショートカット
・アイコン
→押下すると画像の選択が行えます
・ショートカット名
→作成するショートカットの名称
※ファイル選択時に自動でファイル名が入力されます
- mime
・MIME設定となります
※ファイル選択時に自動でMIMEが入力されます
判定できない場合は空文字
例)
text/plain :テキストエディタで開くファイル(*.txt等)
image/png :PNG画像(*.png)
- 作成ボタン
ショートカットの作成を行います
■アプリ設定
- 言語
表示言語
■その他
多言語対応
google翻訳を使用しつつ。。。(誤訳はすいません)
■権限
INSTALL_SHORTCUT
→ショートカットの作成に必要
■プログラム
他アプリのActivityから呼び出しは可能
パッケージ名:jp.gr.java_conf.error484.shortcuticonchange
Activity名:MainActivity
受け取り情報:EXTRA_HOME => ホームへのショートカット作成(true:ホームへショートカットを作成 false:ショートカット情報を呼び出し元で受取)
public void test() {
Intent intent;
(省略)
// ショートカットの一覧
変更前:startActivityForResult(intent, 1);
としている場合、以下のように変更
intent.putExtra("EXTRA_HOME", false);
変更後:startActivityForResult(「ShortcutIconChangeのintent」, 2);
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
(省略)
switch (requestCode) {
case 1:
// ショートカットの一覧
// ShortcutIconChangeでは必要なし
startActivityForResult(data, 2);
break;
case 2:
// ショートカットの情報を受け取り
break;
}
}
※※※※※※※※※※※※※※※※
-Galaxy S2(4.0.3)でのみ動作確認
-他のアプリと連携が出来そうであれば行っていきます。
→APIが公開されている、ショートカット等で簡単に連携が出来る場合
※オープンソース等のアプリの組込みは行いません。(追従が面倒なため)
※こちらのツールも要望があれば連携できるように入り口等は検討します
-多言語対応に関しては誤訳が多いとは思いますが。。。自分ではどうにもならないです。
翻訳をして頂けるのであればお願いします。。。 When you create a shortcut, this application performs an intermediary,
Tool for changing the "icon" "shortcut name"
※ If the phenomenon that can not be created shortcut when performing a version up has occurred, please do the installation again after performing once uninstall.
■ Basic Use
If you want to create a shortcut to ○ Home
1. Starting the application
2. Select from the list of shortcuts
3. icon, and change of name to be confirmed
If you want to register a shortcut to ○ launcher, etc.,
1. shortcut selection of launcher, etc., select this app
2. Select from the shortcut list of this app
3. icon, and change of name to be confirmed
■ "icon" "shortcut name" shortcut change screen
The changes will be reflected in the shortcut
- Icon
Was carried out to start the character Lee When you do tap, you can change to the selected icon
- Shortcut name
Name of the shortcut to be created
If the name is empty ※, you created with the default name
- Menu
App settings
View application settings
Application List
Shortcut list → Switch to the application list
Shortcuts List
Switch to the application list → shortcut list
File Create Shortcut
File shortcut creation screen to Switch
■ File shortcut creation screen
I create a shortcut to the file itself
- File path
I enter the path to the file
Will be displayed when the file selection dialog by pressing the "F" button ※
- Shortcuts
Icon
→ Select the image can be done when the user presses
Shortcut name
→ name of the shortcut you want to create
File name is entered automatically when ※ file selection
- Mime
- It becomes a MIME settings
MIME is entered automatically when ※ file selection
Or the empty if you can not be determined
Example)
text / plain: file you want to open in a text editor (* .txt, etc.)
image / png: PNG image (* .png)
- Create button
I will do the Create Shortcut
■ app settings
- Language
Display language
■ Other
Multilingual
while using the google translation. . . (Mistranslation is sorry)
■ authority
INSTALL_SHORTCUT
→ The need to create a shortcut
■ Program
From Activity of other apps call can be
Package name: jp.gr.java_conf.error484.shortcuticonchange
Activity name: MainActivity
Receive information: EXTRA_HOME => create a shortcut to the home (true: Home create a shortcut to false: receives the shortcut information the caller)
public void test () {
Intent intent;
(Optional)
List of // shortcut
Before change: startActivityForResult (intent, 1);
If you have a, modified as follows
intent.putExtra ("EXTRA_HOME", false);
After the change: startActivityForResult ("intent of ShortcutIconChange", 2);
}
protected void onActivityResult (int requestCode, int resultCode, Intent data) {
(Optional)
switch (requestCode) {
case 1:
List of // shortcut
// ShortcutIconChange without the need in
startActivityForResult (data, 2);
break;
case 2:
// Receives information of shortcut
break;
}
}
※※※※※※※※※※※※※※※※
-Galaxy Only tested with S2 (4.0.3)
- If the likely can work with other apps I will continue to go.
→ API is published, if easily collaboration can be the shortcut, etc.
※ is not performed built-in apps such as open source. (For follow-up is troublesome)
※ entrance, etc. to be able to cooperate Some demand here tools you should consider
- While in relation to multi-lingual you think mistranslation often. . . I'm not helpless yourself.
If you are interested to translate thank you. . .