Differences between revisions 2 and 19 (spanning 17 versions)
Revision 2 as of 2009-08-20 03:19:42
Size: 985
Editor: SamatJain
Comment:
Revision 19 as of 2020-09-19 10:50:43
Size: 1693
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Android applications I use: ## page was renamed from Android
Line 3: Line 3:
 * AK Notepad
 * aTrackDog
 * Backup for root users
 * Barcode Scanner
 * Beelicious
 * Brain Genius Deluxe
 * ConnectBot
 * CrowdPleazer
 * Finance
 * Google Maps
 * Google Voice
 * K-9 Mail
 * NewsRob
 * NYC Subway Map
 * Opera Mini
 * OI Notepad
 * Phonalyzer
 * Proxoid
 * Key Ring Reward Cards
 * Rings Extended
 * Secrets for Android
 * TuneWiki
 * T-Mobile My Account
 * T-Mobile HotSpot Connect
 * Twidroid
 * Toggle Settings
 * Weatherbug
 * Weather Widgets
 * Wikitude World Browser
 * Wireless Tether for Root Users
<<TableOfContents>>
Line 34: Line 5:
== Replacing Gallery3D with Gallery (2D version) ==
Line 35: Line 7:
 * UrbanKite
 * nru
Android 2.0 and above (and their respective Cyanogen ports) replace the Android's original 2D Gallery application with a fancy one (known as Gallery 3D) with whiz-bang 3D graphics.
Line 38: Line 9:
=== Move Dalvik Cache to another partition === Unfortunately, it's painfully slow on devices like the T-Mobile G1 (aka HTC Dream) and T-Mobile MyTouch 3G (aka HTC Sapphire/Magic). However, if you've rooted your phone, you can remove the 3D version of the app and replace it with the 2D one, which is significantly faster.
Line 41: Line 12:
cd /cache
mkdir dalvik-cache
chown 1000 dalvik-cache
chgrp 1000 dalvik-cache
chmod 771 dalvik-cache
cd /data
mv dalvik-cache dalvik-cache-orig
ln -s /cache/dalvik-cache dalvik-cache
adb remount
adb shell rm /system/app/Gallery3D.apk
adb push Gallery.apk /system/app/
Line 51: Line 17:
Source: [[http://andblogs.net/2009/05/quick-hack-save-tons-of-space/|Quick Hack: Save Tons of Space]] Download the 2D version of Gallery: [[attachment:Gallery.apk]]

== Mobile e-mail signature ==

{{{
Samat K Jain • GPG: 0x4A456FBA • Mastadon: https://identi.ca/samatjain
Web: https://samat.io/ • Twitter: https://twitter.com/SamatJain

Sent from my mobile. Please excuse brevity and typos.
This e-mail is: [ ] shareable [x] ask first [ ] private
}}}

== Setting Android settings via adb ==

{{{#!highlight sh numbers=off

# Custom DPI
adb shell wm density 424 # ideal size for Xperia Z2
adb shell wm density 480 # default for Xperia Z2

# Custom animation speeds
# TODO: Actually put the numbers I prefer here
adb shell settings put global window_animation_scale 0.75
adb shell settings put global transition_animation_scale 0.75
adb shell settings put global animator_duration_scale 0.75

# Verify
adb shell settings get global window_animation_scale
adb shell settings get global transition_animation_scale
adb shell settings get global animator_duration_scale
}}}

Android 2.0 and above (and their respective Cyanogen ports) replace the Android's original 2D Gallery application with a fancy one (known as Gallery 3D) with whiz-bang 3D graphics.

Unfortunately, it's painfully slow on devices like the T-Mobile G1 (aka HTC Dream) and T-Mobile MyTouch 3G (aka HTC Sapphire/Magic). However, if you've rooted your phone, you can remove the 3D version of the app and replace it with the 2D one, which is significantly faster.

   1 adb remount
   2 adb shell rm /system/app/Gallery3D.apk
   3 adb push Gallery.apk /system/app/

Download the 2D version of Gallery: Gallery.apk

Mobile e-mail signature

Samat K Jain • GPG: 0x4A456FBA • Mastadon: https://identi.ca/samatjain
Web: https://samat.io/ • Twitter: https://twitter.com/SamatJain

Sent from my mobile. Please excuse brevity and typos.
This e-mail is: [ ] shareable [x] ask first [ ] private

Setting Android settings via adb

# Custom DPI
adb shell wm density 424 # ideal size for Xperia Z2
adb shell wm density 480 # default for Xperia Z2

# Custom animation speeds
# TODO: Actually put the numbers I prefer here
adb shell settings put global window_animation_scale 0.75
adb shell settings put global transition_animation_scale 0.75
adb shell settings put global animator_duration_scale 0.75

# Verify
adb shell settings get global window_animation_scale
adb shell settings get global transition_animation_scale
adb shell settings get global animator_duration_scale

SamatsWiki: DotFiles/Android (last edited 2023-04-19 19:32:06 by SamatJain)