ShortcutIconChange

ShortcutIconChange Free App

Rated 3.83/5 (6) —  Free Android application by error484

Advertisements

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. . .

How to Download / Install

Download and install ShortcutIconChange version 1.0.0.11 on your Android device!
Downloaded 1,000+ times, content rating: Everyone
Android package: jp.gr.java_conf.error484.shortcuticonchange, download ShortcutIconChange.apk

All Application Badges

Free
downl.
Android
3.0+
For everyone
Android app

App History & Updates

What's Changed
2014/01/01
・非常に大きなアイコンを持つアプリケーションのショートカットが作成されない不具合を修正
※アプリのアイコンをこちらでリサイズします。
2013/12/29
・AndroidのSDKを最新に変更して再コンパイル
※Android4.2(17) から Android4.4(19)に変更
※処理に変更はありません
2013/12/21
・ショートカット一覧時の表示を「アプリ名」から「ショートカット名」に変更
2013/12/20
・ショートカットの一覧を表示をする際、1つのアプリに複数のショートカットActivityが存在すると一つのみ表示を行っていたので
全て表示するように修正しました。
※但し、全て同じアプリ名となります。
2013/05/18
・ファイルへのショートカットを追加
→メニューファイルショートカット作成→内容を入力→作成
2013/04/07
・内部処理を一部修正
(SDKの更新等)
More downloads  ShortcutIconChange reached 1 000 - 5 000 downloads
More downloads  ShortcutIconChange reached 500 - 1 000 downloads

Oh snap! No comments are available for ShortcutIconChange at the moment. Be the first to leave one!

Share The Word!


Rating Distribution

RATING
3.85
6 users

5

4

3

2

1