Ubuntu 14 配置Android Studio的快捷启动方式
在window7下安裝配置了Android Studio之后就想把ubuntu下的Android Studio整舒服。
桌面圖標
Ubuntu下解壓Android Studio壓縮包后有個名為"Install-Linux-tar.txt"的說明文件,里面有這么一段:
Unpack the Android Studio distribution archive that you downloaded to
where you wish to install the program. We will refer to this destination
location as your {installation home} below.
Open a console and cd into "{installation home}/bin" and type:
./studio.sh
to start the application.
[OPTIONAL] Add the "{installation home}/bin" to your PATH environmental
variable so that you may start Android Studio from any directory.
如果只做前兩步的話每次啟動Android Studio都要用終端進入Android Studio的文件夾運行"./studio.sh",這是很麻煩的。
第一次和第二次都是不正解。不想看請?zhí)^。
第一次:修改/etc/profile文件,添加"{installation home}/bin"到環(huán)境變量。重啟系統(tǒng)使其生效。
事實證明不作死就不會死啊...重啟以后被卡在了輸密碼登陸的界面,無限循環(huán)輸密碼嗎進不去系統(tǒng)。
解決辦法:1.Ctrl+Alt+F1進入命令界面, 2.輸入sudo vi /etc/profile還原為修改前的內(nèi)容, 3.輸入:wq保存, 4.輸入reboot重啟系統(tǒng)[1]。
第二次:修改/etc/environment添加"{installation home}/bin" 到PATH環(huán)境變量,此時可以從任意文件夾啟動Android Studio了,但是還是要在終端里面。
順便profile和environment的區(qū)別:系統(tǒng)是先執(zhí)行/etc/environment,后執(zhí)行/etc/profile。/etc/environment是設(shè)置整個系統(tǒng)的環(huán)境,而/etc/profile是設(shè)置所有用戶的環(huán)境。系統(tǒng)應(yīng)用程序的執(zhí)行與用戶環(huán)境可以是無關(guān)的,但與系統(tǒng)環(huán)境是相關(guān)的[2]。
正解在這里!
Google到一篇名為How to add Android Studio to the launcher?的文章[3],里面有一段Answers內(nèi)容為:
Here is my AndroidStudio .desktop file which works from the launcher.
[Desktop Entry] Version=1.0 Type=Application Name=Android Studio Exec="/home/username/Programs/AndroidStudio/bin/studio.sh" %f Icon=/home/username/Programs/AndroidStudio/bin/idea.png Categories=Development;IDE; Terminal=false StartupNotify=true StartupWMClass=jetbrains-android-studio Name[en_GB]=android-studio.desktopAlternatively, you can also open Android Studio, click on Configure(如果已經(jīng)打開了AS,此處就改為Tools) -> Create Desktop Entry. This should create an entry on the dash:
------------------------
AndroidStudio.desktop文件放桌面上,就是下面這樣子。
做了這些之后就可以從桌上和dash里啟動Android Studio了。
如果提示未信任的應(yīng)用啟動器的問題,這時只要右鍵該應(yīng)用的desktop文件,單擊屬性,在權(quán)限選項卡中勾選“允許作為程序執(zhí)行文件”即可[4]。
鎖定到Launcher
如果你并不需要桌面圖標的話,下面這種方式可以更快捷的把AS圖標鎖定在Launcher上。 在第一次打開AS的歡迎界面的時候,按照下圖在configure里點下Create Desktop Entry,此時在Launcher上的AS圖標右鍵Lock to Launcher,就可以把AS的快捷方式鎖定在這。 為什么要執(zhí)行一下Create Desktop Entry呢?因為不執(zhí)行這一步的話,雖然也有Lock to Launcher這個選項,但是有可能并沒有成功鎖定在Launcher上,退出AS后Launcher的圖標也自動消失了。另外:如果打開了某個工程進入主界面的時候可以在Tools的下拉菜單里找到Create Desktop Entry選項。
參考:
原文地址: http://blog.csdn.net/aaa111/article/details/41833179
總結(jié)
以上是生活随笔為你收集整理的Ubuntu 14 配置Android Studio的快捷启动方式的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android Studio系列(二)使
- 下一篇: 如何在Eclipse和Android S