<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
    <title>九五二七宅在家-Android軟硬體</title>
    <link>https://3q.9527.tw/</link>
    <description>3Q.9527.TW</description>


        <item>
        <title>停用或更換Xperia 5 II、Xperia 10 III、Xperia 5 III、Xperia 1 III的語音助理快速鍵</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=160</link>
        <description>原本Sony Xperia自豪的拍照鍵變成Google語音助理的快速鍵，這事讓我對Sony大大扣分，原本指紋解鎖的問題就讓人不爽了，竟然還把這麼重要且是Sony特色的功能再度搞爛一次，身為多年索粉真的是無法理解及原諒。&amp;nbsp;國外有高手提供了解決方案，不需要root，但需要透過開發者工具強制調整權限，來實現更換按鍵的效果。實測能啟動相機，但可惜不能當快門鍵，唉唉...&amp;nbsp;以下為實作步驟教學：&amp;nbsp;步驟一、需要先下載及準備好的三個工具軟體&amp;nbsp;1. 下載 ADB platform-tools ，需在DOS的CMD命令模式下使用的ADB工具https://dl.google.com/android/repository/platform-tools-latest-windows.zip&amp;nbsp;2. 下載 Sony ADB Driver ，接上手機後需要的Driver，很多人卡在這一關https://developer.sony.com/develop/drivers/&amp;nbsp;3. 下載 Shouko / XPERI+ ，主要用來更換按鍵的APK，需在手機上安裝https://github.com/ivaniskandar/shouko/releases&amp;nbsp;步驟二、實際操作電腦接上手機進行強制調整權限&amp;nbsp;1. 在手機上安裝 Shouko / XPERI+ 的 APK&amp;nbsp;&amp;nbsp;2. 在電腦上解壓縮 Sony ADB Driver ，例如放在C:\Sony ADB Driver&amp;nbsp;3. 在電腦上解壓縮 ADB platform-tools ，例如放在C:\platform-tools&amp;nbsp;4. 將手機開啟開發者模式，接上電腦，自動安裝驅動程式，應該會失敗&amp;nbsp;5. 到裝置管理員，把錯誤的ADB Interface更新驅程式，指向Sony ADB Driver的目錄，讓電腦安裝正確的驅動程式&amp;nbsp;6. &amp;nbsp;到開始按執行，或按Windows鍵+R，再輸入cmd進入命令列模式&amp;nbsp;7. 在cmd進入 ADB platform-tools 的目錄裡，例如 cd c:\platform-tools&amp;nbsp;8. 可先輸入檢查指令 adb devices ，檢查手機有無正確連接，驅動程式有無正常運作&amp;nbsp;9. 確認一切就緒後，輸入底下2行指令，失敗才有訊息，若成功會完全沒訊息就結束adb shell pm grant xyz.ivaniskandar.shouko android.permission.WRITE_SECURE_SETTINGSadb shell pm grant xyz.ivaniskandar.shouko android.permission.READ_LOGS&amp;nbsp;10. 以上順利完成後，再到手機中的 XPERI+軟體內進行按鍵的設定，若使用上怪怪的，可以再安裝一次APK可能可以改善。&amp;nbsp;打完收工</description>
        <pubDate>Fri, 19 Nov 2021 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=160</guid>
    </item>
        <item>
        <title>Android Studio隱藏標題列及全螢幕的寫法</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=113</link>
        <description>如果是Elipse的一般Activity，隱藏標題列及全螢幕的寫法&lt;activity android:name=&quot;.MainActivity&quot; android:theme=&quot;@android:style/Theme.black.NoTitleBar.Fullscreen&quot; &gt;但這寫法在Android Studio開局時會直接閃退...&amp;nbsp;如果是用Android Studio開局，預設是繼承AppCompatActivitypublic class MainActivity extends AppCompatActivity則隱藏標題列及全螢幕的寫法Step1.在style.xml文件加入整個style&lt;style name=&quot;AppTheme.FullScreen&quot;&gt;    &lt;item name=&quot;windowActionBar&quot;&gt;false&lt;/item&gt;    &lt;item name=&quot;windowNoTitle&quot;&gt;true&lt;/item&gt;    &lt;item name=&quot;android:windowFullscreen&quot;&gt;true&lt;/item&gt;&lt;/style&gt;&amp;nbsp;Step2.在AndroidManifest.xml 的&lt;application 裡增加&lt;application android:theme=&quot;@style/AppTheme.FullScreen&quot;&gt;&amp;nbsp;搞定，打完收工</description>
        <pubDate>Mon, 29 Jan 2018 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=113</guid>
    </item>
        <item>
        <title>Android手機內建的地震緊急警報APP</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=94</link>
        <description>台灣自五月開始只要有較大的地震，一部份人的手機會出現國家級的地震緊急警報。奇怪的是，不是每個人的手機都有？有人說因為門號不是4G的關係，但事實上有很多人是4G門號，一樣收不到通知呀！&amp;nbsp;其實要收到地震緊急警報有一些基本條件&amp;nbsp;&amp;nbsp;一、首先3G跟4G都可以收到，但前提是你的手機訊號當時是否通暢；因為這是有時效性的通知，不像簡訊一樣，現在收不到，晚點收到就好！而緊急警報只有在發生前一刻有意義，發生後再收到就沒意義了，而且會有反效果，所以當下只要有一點訊號不良就會被略過！&amp;nbsp;二、3G手機因為通道問題，如果你正在用3G行動上網，那也可能會因此而收不到。&amp;nbsp;三、手機系統的問題，在Android 4.4版本之後，其實都有內建這個APP，但以前台灣沒有開放此功能，所以各家手機業者都選擇刪掉，但現在開放了，各家手機業者有沒有發OTA給你更新呢？要全面的更新舊手機，有點難度吧...&amp;nbsp;&amp;nbsp;若您的手機沒有這個工具APP，那沒收到緊急警報是正常的，跟你是不是用4G根本無關！ 較新的手機或系統版本還有在更新的手機，理應都會把緊急警報的APP放進去才對。&amp;nbsp;雖然舊手機可以等業者發給你OTA，但到底會不會發呢？&amp;nbsp;NCC表示，目前系統仍在測試調教中，這也是部分民眾在昨日未收到地震警報的因素之一。因此，在六月底民眾的手機透過OTA升級韌體，符合PWS規範後(可接受災防告警訊息)，而災防告警細胞廣播系統也正式上線後(預計是七月分)，未來若再發生規模5以上地震等符合警報推送條件的緊急事件，全台民眾都應能順利接受到相關緊急通知，並即時因應。&amp;nbsp;所以我的Google G1手機也會更新囉？&amp;nbsp;另外可參考NCC提供的資料，雖然資料很少，但總比沒有好...國家通訊傳播委員會的手機接收細胞廣播服務功能&amp;nbsp;</description>
        <pubDate>Tue, 31 May 2016 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=94</guid>
    </item>
        <item>
        <title>CM各個版本號的意思 cyanogenmod nightly snapshot stable</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=73</link>
        <description>	cyanogenmod的rom有相當多的使用者	有著比原生Android更多的微調	卻保留了原生Android的反應速度及精簡輕巧	不喜歡原廠客制軟體的人，相信都很喜歡CM的rom	在此介紹一下CM發行ROM時的版本號代表意思...	觀看完整文章...</description>
        <pubDate>Wed, 15 Oct 2014 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=73</guid>
    </item>
        <item>
        <title>Launcher.apk跟Launcher2.apk還有Launcher3.apk的版本差別</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=72</link>
        <description>Launcher是Android系統的&quot;桌面&quot;主要是桌面的外觀效果與操作，至於各版本號有什麼差別呢？觀看完整文章...</description>
        <pubDate>Thu, 07 Aug 2014 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=72</guid>
    </item>
        <item>
        <title>Android、iPhone、iPad手機平板螢幕桌布尺寸解析度列表</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=55</link>
        <description>	早期的手機對桌布圖片並沒有很注重，	但後期智慧型手機的螢幕愈來愈大，	對手機桌面的要求也愈來愈像電腦桌面一樣，	想要有自己的風格及圖片，	&amp;nbsp;	大大小小的手機平板的解析度對於桌布圖片的製作相當的麻煩，	以下是各式各樣的螢幕解析度的簡單整理...	&amp;nbsp;	觀看完整文章...</description>
        <pubDate>Fri, 08 Mar 2013 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=55</guid>
    </item>
        <item>
        <title>Android的cpu超頻省電調速說明(Interactive,Conservative,Ondemand的意義)</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=53</link>
        <description>在SetCPU或其他頻率超頻或省電的CPU調節控制軟體，有幾種設定大部份人可能不知道意思是什麼，其實預設就很好用了，但是如果有特殊需求，可以參考以下說明來改變你CPU的設計。觀看完整文章...</description>
        <pubDate>Tue, 19 Feb 2013 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=53</guid>
    </item>
        <item>
        <title>Android官方UI界面圖像設計指南</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=47</link>
        <description>Google推出Android平台後很快就受到廣大的開發人員支持與使用，但是品質參差不齊，不像iPhone的UI設計已漸漸統一觀看完整文章...</description>
        <pubDate>Tue, 20 Nov 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=47</guid>
    </item>
        <item>
        <title>Android裝置修改system/build.prop讓預設開啟USB Debug偵錯模式</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=45</link>
        <description>大部份的Android裝置在設定裡都有USB Debug 偵錯模式可以使用要刷機什麼的都要靠這個功能但偏偏有些機車的裝置把這功能從設定裡關掉此時就要靠修改build.prop來強制開啟USB Debug偵錯模式觀看完整文章...</description>
        <pubDate>Thu, 18 Oct 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=45</guid>
    </item>
        <item>
        <title>智慧型手機耗電的原兇LINE</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=42</link>
        <description>時常有人覺得宅手機電怎麼掉那麼快其實如果你有裝LINE的話即使你可能沒開網路它還是會在背後偷偷做一些事導致你的電就這樣被吃走了觀看完整文章...</description>
        <pubDate>Thu, 04 Oct 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=42</guid>
    </item>
        <item>
        <title>新玩具MK802 Plus(真實型號GV-11C)(Android Smart TV Box)</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=41</link>
        <description>名稱：MK802 Plus / Android TV Box / Smart TV Box (真實型號GV-11C)規格：Android 4.0.4CPU A10 / 1GHz Cortex-A8RAM 1GB DDR3GPU AMD Z430/AMD Z160觀看完整文章...</description>
        <pubDate>Thu, 04 Oct 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=41</guid>
    </item>
        <item>
        <title>注意！簡易自我檢測Android的USSD安全性漏洞！</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=40</link>
        <description>三星Galaxy設備有「初始化」的USSD漏洞目前已知這是Android舊核心的USSD漏洞，但其他廠商的手機暫時沒有三星那麼嚴重&amp;nbsp;其他廠牌手機可透過一般HTML網頁，即可取得你的IMEI碼，對一般人可能沒有太大影響（雖然其實是很嚴重問題）&amp;nbsp;但三星的手機卻是直接factory reset，造成清除手機所有資料，連問都不問就直接恢復原廠設定，這對一般人的影響就非常大了！觀看完整文章...</description>
        <pubDate>Thu, 27 Sep 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=40</guid>
    </item>
        <item>
        <title>Android手機鈴聲鬧鈴檔案路徑位置</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=35</link>
        <description>剛使用Android手機的人第一件時，時常是要改掉預設的鈴聲但往往發現鈴聲只能用內建的不知道要怎麼把自己的MP3音樂檔拿來當鈴聲或鬧鈴其實跟以往大家熟悉的Nokia介面一樣，只要把檔案放進特定的目錄下就會出現在鈴聲清單裡了觀看完整文章...</description>
        <pubDate>Wed, 01 Aug 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=35</guid>
    </item>
        <item>
        <title>Android AppTheme 系統預設樣式android:Theme語法整理</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=34</link>
        <description>在使用新版Eclipse開發Android程式時創建Android Project後會多了res/values/styles.xml的樣式檔案事實上這是讓Android讀取的預設的樣式定義檔例如要讓整個程式的基本樣式為亮色系或暗色系~或者要隱藏標題全螢幕等等, 皆可以在這個檔案上進行修改...&amp;nbsp;在/res/values/目錄下,&amp;nbsp;預設的styles.xml內容&lt;resources&gt;&lt;style name=&quot;AppTheme&quot; parent=&quot;android:Theme.Light&quot; /&gt;&lt;/resources&gt;&amp;nbsp;而相關語法參數如下觀看完整文章...</description>
        <pubDate>Mon, 30 Jul 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=34</guid>
    </item>
        <item>
        <title>自製Android手機紅外線發射器 使用HTC Desire及SE X1無線搖控單眼相機</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=29</link>
        <description>自從發表了 [Android萬用遙控器軟硬體討論]就一直想自己動手來試做個發射器看看材料相當簡單，但其實不太好買，一般大賣場根本買不到XD最後只有在光華商場的電子材料行，才找的到需要的材料...&amp;nbsp;觀看完整文章...</description>
        <pubDate>Sun, 29 Jan 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=29</guid>
    </item>
        <item>
        <title>那些年 我們一起用過的ICQ</title>
        <link>https://3q.9527.tw/modules/tadnews/index.php?nsn=28</link>
        <description>	因為whatsApp要到期了 所以前陣子改用了LINE	改用LINE之後 對其收發訊不穩的問題 以及母公司是&quot;韓國&quot;的原因下	又在思考是否要改用別的即時通訊軟體	&amp;nbsp;	剛好在幾個月前 6年級生的集體回憶 icq 歐喔~ I seek You 大舉的更新!	故回鍋試用一下, 再評估是否要回去繼續使用icq 並推薦朋友使用...	觀看完整文章...</description>
        <pubDate>Tue, 17 Jan 2012 16:00:00 +1600</pubDate>
        <guid>https://3q.9527.tw/modules/tadnews/index.php?nsn=28</guid>
    </item>
    
</channel>
</rss>