Android - Applications

Thảo luận trong 'Android: Ứng Dụng' bắt đầu bởi baotrung1305, 7 Tháng mười một 2008.

  1. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    Password Safe 0.1.0

    Password Safe is a simple and handy password manager for the Android mobile platform. The software has nice graphics and is very intuitive to use.
    Password Safe 0.1.0 is a simple and handy password manager for the Android mobile platform. The software has nice graphics and is very intuitive.

    [​IMG]


    Description

    Password Safe 0.1.0 by Steven Osborn is a simple and handy password manager for the Android mobile platform. The software comes with nice graphics and also very intuitive.

    Features:
    • 128 Bit AES Encryption
    • Password protected. Your password is needed to decrypt the data stored in the safe
    • All data is encrypted including notes, website link, description
    • Click through website link, will take you from your entry to the website.
    Steve plans to implement in future versions the following features:
    • Fetching/Caching of favicons
    • Customizable encryption. Maybe 256bit AES, DES, etc.
    Link:
    Mã:
     [URL]http://www.androidfreeware.org/getfile/Password_Safe_0.1.0.apk[/URL] 
    nhv12 and nvtinh like this.
  2. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    Update phiên bản 4.2:

    [​IMG]

    • Hơn 90 ngôn ngữ
    • Nhiều màu sắc mới để cá nhân hóa giao diện của Opera Mini
    • Ghi chú giờ đã hỗ trợ Opera Link, cho phép người sử dụng đồng bộ hóa ghi chú giữa PC và Opera Mini.
    • Cải thiện giao thức rstp.
    Link: http://www.opera.com/mini/
    nhv12 thích bài này.
  3. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    VirusGuard: Chống virus cho Google Android

    [​IMG]

    Hiện tại, VirusGuard có thể phát hiện khoảng 400 virus trên di động bao gồm cả trojan. Hơn thế, phiên bản này còn tích hợp cả việc phòng tránh lây nhiễm thông qua thiết lập tường lửa, sao lưu dữ liệu an toàn

    Đây mới là bản dùng thử (bản full trị giá 10USD), trong thời gian chờ đợi, up lên làm giải pháp "chống cháy" cho bác nào lỡ dính phải virus :))

    Download:
    Mã:
     [URL]http://www.smobilesystems.com/fb4/SMobileV5/00003001_vg_bb_06162006/00003001_vg_bb5.5.zip[/URL] 
    tu19_01 thích bài này.
  4. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    Ringdroid


    Ringdroid hỗ trợ người sử dụng tạo nhạc chuông từ các file có định dạng MP3, WAV và ARM, những files này có thể lấy từ thẻ nhớ hoặc tải về qua dịch vụ của Amazon MP3.

    Đa số các chức năng điều khiển của Ringdroid đều hiển thị trên màn hình và đều sử dụng cảm ứng. Ngoài cách bấm Start và End để đặt điểm ghi âm, người sử dụng có thể đặt điểm bắt đầu và kết thúc bằng cách kéo mũi tên dọc theo dòng thời gian, hoặc tự viết vào ấn định thời gian.
    Người sử dụng có thể phóng to dòng thời gian để đặt những điểm chính xác hơn, và có thể bấm phím Menu để quay về điểm khởi đầu trong khi đang ở chế độ phóng to. Khi hoàn thành và bắt đầu lưu trữ, nguời sử dụng có thể lựa chọn ở Menu để tạo nhạc chuông, báo thức, báo tin hoặc chỉnh âm.

    Ringdroid cũng được trang bị một nút Record trên giao diện ứng dụng, để cho người sử dụng có thể tạo một bản nhạc mới

    [​IMG]


    Link:
    Mã:
     [URL]http://ringdroid.googlecode.com/files/Ringdroid.apk[/URL] 
  5. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    Auto Rotate for the Android Browser

    I'm not sure why the Android Browser doesn't auto rotate by default. Instead they have a "Flip Orientation" menu item that lets you toggle your default orientation. Pretty useless overall. Anyhow, a quick hack in the Browser source code let me enable auto rotation via the G-Sensor.
    The change is really trivial. In the BrowserActivity.onCreate, I hard coded the orientation to ActivityInfo.SCREEN_ORIENTATION_SENSOR instead of pulling it from a preferences setting.
    The downside is that the flip orientation menu item no longer works. Not that I care: I (and probably most people) never used it. So it is a hack, but oh well. If I'm motivated I'll put in a proper fix.



    Installation Instructions (you must have root access):
    • Mã:
       [URL="http://koushikdutta.blurryfox.com/Android/Browser.apk"][COLOR=#ee0088]Download the updated Browser.apk[/COLOR][/URL] 
    • Run the following from the command prompt to back up your current Browser file to your sdcard and install the new one:
      • adb remount
      • adb pull /system/app/Browser.apk BrowserBackup.apk
      • adb push BrowserBackup.apk /sdcard
      • adb shell rm /system/app/Browser.odex
      • adb push Browser.apk /system/app
    Nguồn: Koushik Dutta
  6. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    Android Screenshot Application

    After taking a quick peek through the Android source code, I figured out how to write an application that takes a screenshot of whatever is shown on the phone. However, you must have root to use this application.
    Mã:
     [URL="http://koushikdutta.blurryfox.com/Screenshot/Screenshot.apk"][COLOR=#ee0088]Click here to download the Screenshot application[/COLOR][/URL] 
    or download it off the Market.
    Usage:
    Start up the application:
    [​IMG]
    Choose the amount of time to wait before taking the screenshot:
    [​IMG]
    Once the screenshot is taken, you will get a toast on the bottom of the screen letting you know:
    [​IMG]
    Go back to the Screenshot application and view the screenshot and save it out:
    [​IMG]

    Nguồn: Koushik Dutta
  7. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    OI File Manager v1.0.0

    Phần mềm quản lý file cho G1​

    [​IMG]
    Link:
    Mã:
    [ATTACH]134133.vB[/ATTACH]
    iloveiphone3g, VIXIV and nhv12 like this.
  8. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    RemoteDroid

    Phần mềm biến G1 thành con chuột hay bàn phím không dây. Tương thích với hệ điều hành Mac, Windows và Linux​

    Xem hướng dẫn và download phần mềm dành cho PC tại:
    Mã:
    http://www.remotedroid.net/
    Phần mềm cài trên G1 down tại market nhé.​

    New in Version 1.2

    • Tap to click
      The onscreen touchpad is now clickable: tap once for a single click, twice for a double click, and tap and hold to select text or click-and-drag.
    • Trackball scroll wheel
      Clicking on the scroll wheel toggles it from a mouse controller to a scroll wheel. Click again to toggle it back.
    • Customizable mouse sensitivity
      New user preferences menu lets you set the sensitivity of your mouse and tap speed.
    • Saved IP address
      You no longer have to enter your IP address every time you launch the application. RemoteDroid saves the IP address of your last network used -- just tap on "Connect" to begin.
    Key features include:
    • User-selectable mouse control -- use either the phone's trackball or the onscreen touchpad
    • Two onscreen mouse buttons, with right-click/control-click functionality
    • Use in either portrait or landscape mode
    • Works with any WiFi network -- no Bluetooth hardware or adapters required
    • Compatible with Mac, Windows and Linux operating systems
    RemoteDroid consists of two parts: the phone application you can download from Google's Android Marketplace, and a companion server application for your computer that you can download from this site.
    nvtinh thích bài này.
  9. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    Multireader
    Phần mềm giúp đọc file PDF bằng giọng nói
    [​IMG][​IMG]

    Link: ​

    Mã:
    http://www.mediafire.com/?ttnfzgtxkiz
    Mã:
    http://rapidshare.com/files/195776741/Multireader.rar
    
    Thanks Caohieu88 - PV

    Các file đính kèm:

    nhv12 thích bài này.
  10. baotrung1305

    baotrung1305 Quy ẩn giang hồ Staff Member

    Bài viết:
    3,967
    Được Like:
    3,516
    Missed Reminder v0.9.0

    [​IMG]
    Nhắc nhở các cuộc gọi nhỡ và tin nhắn chưa đọc.

    Link:
    Mã:
    [ATTACH]136620.vB[/ATTACH]
    nhv12 thích bài này.