Jump to content

Android - προτάσεις: Γενικές Εφαρμογές


nervous
 Κοινοποίηση

Recommended Posts

που την εχει την επιλογη και δεν την βρισκω:confused:

 

Στο κεντρικό μενού...

 

Αν έχεις Desire ίσως να μην την βλέπεις την εφαρμογή, καθώς προς το παρόν αρκετές εφαρμογές του market δεν εμφανίζονται στους κάτοχους Desire. Το barcode scanner το βλέπεις;

What u take is what u give...
Link to comment
Share on other sites

  • Απαντήσεις 3,6χιλ.
  • Δημιουργία
  • Τελευταία απάντηση

Top Posters In This Topic

Δημοφιλείς μέρες

Top Posters In This Topic

Στο κεντρικό μενού...

 

Αν έχεις Desire ίσως να μην την βλέπεις την εφαρμογή, καθώς προς το παρόν αρκετές εφαρμογές του market δεν εμφανίζονται στους κάτοχους Desire. Το barcode scanner το βλέπεις;

 

ναι αμε.κανονικα

Η υπομονή είναι πικρή,αλλά ο καρπός της είναι γλυκός.

Link to comment
Share on other sites

Ενα πολυ ωραιο αρθρο που βρηκα

 

FAQ: Why You Shouldn’t Be Using a Task Killer with Android

 

I see this come up over and over again. People saying that a task is running in the background and they think it is killing their battery or hogging all of their memory. So their natural reaction is to download a program made to kill tasks. Here’s the thing… you are likely doing more harm than good by killing tasks that aren’t ready to end. I was the same way when I first got my CDMA Hero. There were tons of things running that I didn’t want so I just kept killing them. After a few weeks I realized that if I stopped using a task killer (and totally uninstalled it in fact) my phone actually began to run better! The applications would close themselves and things just seemed to be running better. I get that there may be short term benefits from clearing a task, but you should still take the time to read through this.

 

Here is some information directly from Android’s developer page. I have put the important parts in bold. This is quite a lengthy read but honestly I think it’s important. If you want the full read then you can check out the dev page here. If you just want the quick TL;DNR version then scroll to the bottom.

 

By default, every application runs in its own Linux process. Android starts the process when any of the application’s code needs to be executed, and shuts down the process when it’s no longer needed and system resources are required by other applications.

A content provider is active only while it’s responding to a request from a ContentResolver. And a broadcast receiver is active only while it’s responding to a broadcast message. So there’s no need to explicitly shut down these components.

Activities, on the other hand, provide the user interface. They’re in a long-running conversation with the user and may remain active, even when idle, as long as the conversation continues. Similarly, services may also remain running for a long time. So Android has methods to shut down activities and services in an orderly way:

 

* An activity can be shut down by calling its finish() method. One activity can shut down another activity (one it started with startActivityForResult()) by calling finishActivity().

* A service can be stopped by calling its stopSelf() method, or by calling Context.stopService().

 

Components might also be shut down by the system when they are no longer being used or when Android must reclaim memory for more active components.

If the user leaves a task for a long time, the system clears the task of all activities except the root activity. When the user returns to the task again, it’s as the user left it, except that only the initial activity is present. The idea is that, after a time, users will likely have abandoned what they were doing before and are returning to the task to begin something new.

 

Activity lifecycle

 

An activity has essentially three states:

 

* It is active or running when it is in the foreground of the screen (at the top of the activity stack for the current task). This is the activity that is the focus for the user’s actions.

* It is paused if it has lost focus but is still visible to the user. That is, another activity lies on top of it and that activity either is transparent or doesn’t cover the full screen, so some of the paused activity can show through. A paused activity is completely alive (it maintains all state and member information and remains attached to the window manager), but can be killed by the system in extreme low memory situations.

* It is stopped if it is completely obscured by another activity. It still retains all state and member information. However, it is no longer visible to the user so its window is hidden and it will often be killed by the system when memory is needed elsewhere.

 

If an activity is paused or stopped, the system can drop it from memory either by asking it to finish (calling its finish() method), or simply killing its process. When it is displayed again to the user, it must be completely restarted and restored to its previous state.

The foreground lifetime of an activity happens between a call to onResume() until a corresponding call to onPause(). During this time, the activity is in front of all other activities on screen and is interacting with the user. An activity can frequently transition between the resumed and paused states — for example, onPause() is called when the device goes to sleep or when a new activity is started, onResume() is called when an activity result or a new intent is delivered. Therefore, the code in these two methods should be fairly lightweight.

 

So… the TL;DNR Version:

 

* Android is hard coded to automatically kill a task when more memory is needed.

* Android is hard coded to automatically kill a task when it’s done doing what it needs to do.

* Android is hard coded to automatically kill a task when you haven’t returned to it in a long time.

* Most services (while possibly running in the background) use very little memory when not actively doing something.

* A content provider is only doing something when there is a notification for it to give. Otherwise it uses very little memory.

* Killing a process when it isn’t ready only causes it to have to reload itself and start from scratch when it’s needed again.

* Because a task is likely running in the background for a reason, killing it will only cause it to re-spawn as soon as the activity that was using it looks for it again. And it will just have to start over again.

* Killing certain processes can have undesirable side effects. Not receiving text messages, alarms not going off, and force closes just to name a few.

* The only true way to prevent something from running at all on your phone would be to uninstall the .apk.

* Most applications will exit themselves if you get out of it by hitting “back” until it closes rather than hitting the “home” button. But even with hitting home, Android will eventually kill it once it’s been in the background for a while.

 

Questions? Concerns? Feel that I’m wrong? Comment below and let’s discuss!

Addendum:

 

One thing that I forgot to even address here is that memory works a bit differently in linux than it does in Windows. In general the way memory works is you really only need as much as you plan on using. So if your combined running programs use 100mb of memory, 150mb is more than enough. There is no need to clear what’s running in memory before you hit that 150mb cap. Now in Windows it seems that the system performs a bit better when you have less stuff in memory, even if it’s not full. No doubt those who have been on computers for a while will remember there used to be programs that could clear your memory in Windows also.

Linux however isn’t generally affected by this. While I admit that I don’t know the architecture and reason for this… linux will run the same regardless of if you have 20mb free memory or 200mb. And as I outlined above, Android will automatically start to kill applications if you do get low on memory! Stealing a quote from Chris Johnston, “Buffers and cache in RAM being cleared is silly. Imagine a professor, who rather than writing all the way across the chalkboard, finishes a sentence and immediately erases and starts writing in the upper left corner AGAIN and AGAIN and AGAIN OR imagine you like a song. You record it to the beginning of a cassette tape. When you want a new song, do you re-record over the first song or record after it?”

I have also seen people incorrectly assume that the more memory in use, the faster their battery will die. This would actually be more attributed to the amount of processor cycles (CPU %) going on and not the amount of memory being taken up by a certain program. However, that does lead to a good point! When can a task manager be a good thing?? To help you determine what IS slowing down your phone; what may actually be draining your battery faster. That is actually what helped us discover that there appears to be a bug still left over from 1.5 that is causing slow downs on our CDMA Hero’s even today. While an item using up memory isn’t going to hurt things, an item chewing through your CPU absolutely will. Now I still don’t suggest using a task killer to kill a program that is using up your processor (unless of course it is a zombie process that is going crazy, but you should probably just reboot in that case). But it can help you see what’s going on with your phone.

I hope this has helped someone. With all of that said… I always encourage experimenting. It is your phone, and you can do with it what you please. If you swear that a task killer makes your phone amazing, then by all means use it! Thanks for reading.

Link to comment
Share on other sites

Η αλήθεια είναι πως οι περισσότεροι δεν συνιστούν task killer στο Android και κάτι ξέρουν. Προσωπικά έχω βάλει το Advanced Task Manager (full), για να κλείνει οτι δεν χρειάζεται (με μπόλικα excludes), αλλά δεν έχω ιδιαίτερη διαφορά στις επιδόσεις.
What u take is what u give...
Link to comment
Share on other sites

Ένα πολύ ωραίο δωρεάν παιχνιδάκι που εγκατέστησα,είναι το Replica island!

 

[ame=http://www.youtube.com/watch?v=Gzvndy9MXUw&feature=player_embedded]YouTube- Replica Island Trailer[/ame]

Edited by bomber21
Link to comment
Share on other sites

Κι εγω χρησιμοποιω το advanced task killer (δε νομιζω να ειναι το φουλ). Δεν το εχω βαλει να κανει autokill και μερικες εφαρμογες τις εχω στο exclude. Οποτε δε νομιζω να επεμβαινει και τοσο στη λειτουργια του android.
Link to comment
Share on other sites

Φάση έχει το Replica. Δοκιμάστε το World War, θυμίζει εποχές bitefight :P

 

Οποιος θέλει alliance με Γερμανούς: FC2CS4, add me.

What u take is what u give...
Link to comment
Share on other sites

Κατα τη γνωμη σας ποιο ειναι το πιο ολοκληρωμενο προγραμμα αναπαραγωγης βιντεο που να υποστηριζει και αρκετα φορμα?

Απο το yxplayer δεν εμεινα καθολου ευχαριστημενος.

MyName: Γιάννης.

Samsung s22 ultra ~ Samsung Tab S7 ~ Dell XPS 9350

Link to comment
Share on other sites

μπορουμε να αλλαξουμε attributes σε αρχειο σε non rooted κινητο; και με ποια εφαρμογη; δε βρηκα κατι...
Link to comment
Share on other sites

μπορουμε να αλλαξουμε attributes σε αρχειο σε non rooted κινητο; και με ποια εφαρμογη; δε βρηκα κατι...

 

Για να αλλάξεις attributes σε ένα αρχείο, χρειάζεσαι απαραίτητα πρόσβαση root. Αν το αρχείο είναι στην κάρτα SD, μπορείς να το κάνεις από τo PC σου. Αν πρόκειται για αρχείο στη συσκευή, δε γίνεται.

Link to comment
Share on other sites

Υπάρχει κάποιος browser που είναι καλυτερος από τον default (να έχει multitouch,να είναι πιο γρήγορος) και να αξίζει να τον αντικαταστησω ?
Link to comment
Share on other sites

@vman: Βασίλη γίνεται με τον Root Explorer. Δυο εφαρμογές του Android τις έσβησα manually έτσι.

 

@vold: στο θέμα του pinch in/out zoom o default κατά τη γνώμη μου είναι ο καλύτερος. Ζουμάρει και κεντράρει πιο σωστά και από Opera και από Dolphin. Oι δυο τελευταίοι ωστόσο σε κάποια site είναι ελαφρώς ταχύτεροι. Δοκίμασέ τους και αποφάσισε ;)

What u take is what u give...
Link to comment
Share on other sites

@vman: Βασίλη γίνεται με τον Root Explorer. Δυο εφαρμογές του Android τις έσβησα manually έτσι.

 

O root explorer θέλει πρόσβαση root και ο nikoskat ρώτησε για non rooted κινητό.

Link to comment
Share on other sites

Για να αλλάξεις attributes σε ένα αρχείο, χρειάζεσαι απαραίτητα πρόσβαση root. [...]

Υπέθεσα οτι μετά από αυτό μιλούσες ήδη για rooted κινητό, ΟΚ :)

What u take is what u give...
Link to comment
Share on other sites

Μπορεί κάποιος να μου προτείνει ενα καλό music και video player?Ας είναι και ξεχωριστά προγράμματα

Και ενα app για δημιουργία πολλών προφιλ. Κατέβασα ένα profile manager αλλα δεν ήταν τόσο καλό

Edited by obelix0000

Device: Nexus 5

Rom: PureNexus

Link to comment
Share on other sites

παιδια, τα φωτα σας!

Εχω ενα ΝΟΚΙΑ s60 και θελω να συγχρονισω με το Magic τις επαφες, τι ειναι το καλυτερο να κανω?

Ακομη, πως λεγεται η εφαρμογη για να δεχεσαι και να στελνεις αρχεια με το ΒΤ?

[sIGPIC][/sIGPIC]

Motorola Moto G 4g

Link to comment
Share on other sites

παιδια, τα φωτα σας!

Εχω ενα ΝΟΚΙΑ s60 και θελω να συγχρονισω με το Magic τις επαφες, τι ειναι το καλυτερο να κανω?

Ακομη, πως λεγεται η εφαρμογη για να δεχεσαι και να στελνεις αρχεια με το ΒΤ?

 

Είναι καλύτερο να κάνεις την ερώτηση για το Magic στο αντίστοιχο thread.

 

H εφαρμογή του bluetooth ονομάζεται bluetooth file transfer, αλλά δεν πρόκειται να δουλέψει, εάν έχεις την έκδοση 1.5 του Android.

Link to comment
Share on other sites

Παιδιά , έχει κανείς υπ'οψην του κάποιο Client για να βρίσκω/κατεβάζω torrent κατευθείαν στο κινητό μου ? (Android 2.1/Desire)
Δγιαδόσται !!!11! :https://www.thepressproject.gr/
Link to comment
Share on other sites

Ξερουμε καποιο πληκτρολογιο που στα ελληνικα να περναει σε 2ο μηνυμα στους 160 χαρακτηρες κι οχι στους 70 ?
Link to comment
Share on other sites

Ξερουμε καποιο πληκτρολογιο που στα ελληνικα να περναει σε 2ο μηνυμα στους 160 χαρακτηρες κι οχι στους 70 ?

Δεν υπάρχει γιατί δε γίνεται. Η μόνη λύση είναι να ενεργοποιήσεις απ τις ρυθμίσεις της εφαρμογής Ελληνικό Πληκτρολόγιο την επιλογή Λειτουργεία 7bit SMS/IM αλλά θα μπορείς να γράφεις μόνο κεφαλαία ελληνικά.

Edited by MaXAiRO

spacer.png
Model: OnePlus 8T Lunar Silver 12/256 (kebab)
ROM: OxygenOS v11.0.11.11.KB05AA (Android 11)
Mods: Magisk v23 + Riru + LSPosed
Recovery: TWRP 3.5.2_11

Link to comment
Share on other sites

Δεν υπάρχει γιατί δε γίνεται. Η μόνη λύση είναι να απενεργοποιήσεις απ τις ρυθμίσεις της εφαρμογής Ελληνικό Πληκτρολόγιο την επιλογή Λειτουργεία 7bit SMS/IM αλλά θα μπορείς να γράφεις μόνο κεφαλαία ελληνικά.

 

Το δοκιμασα στο ματζικ αλλα μετα το πρωτο γραμμα ξαναγυρναει στους 70 χαρακτηρες.:worry:

Link to comment
Share on other sites

Το δοκιμασα στο ματζικ αλλα μετα το πρωτο γραμμα ξαναγυρναει στους 70 χαρακτηρες.:worry:

 

Η επιλογή λειτουργεί μόνο στη default messaging εφαρμογή του Android με την πράσινη φατσουλα και όχι σε εφαρμογές όπως Handcent ή Chomp Sms.

spacer.png
Model: OnePlus 8T Lunar Silver 12/256 (kebab)
ROM: OxygenOS v11.0.11.11.KB05AA (Android 11)
Mods: Magisk v23 + Riru + LSPosed
Recovery: TWRP 3.5.2_11

Link to comment
Share on other sites

Η επιλογή λειτουργεί μόνο στη default messaging εφαρμογή του Android με την πράσινη φατσουλα και όχι σε εφαρμογές όπως Handcent ή Chomp Sms.

 

To δοκιμασα μολις τωρα και στην default, αλλα παλι δε γινεται τιποτα. Στο magic η default εφαρμογη εχει ενα bubble και απο κατω λεει messaging.

Link to comment
Share on other sites

To δοκιμασα μολις τωρα και στην default, αλλα παλι δε γινεται τιποτα. Στο magic η default εφαρμογη εχει ενα bubble και απο κατω λεει messaging.

 

Τι να σου πω... εγώ οπότε χρησιμοποιώ την Default στο Milestone με 2.1 από μαμά με ενεργοποιημένο το 7bit στη ρύθμιση γράφω κανονικά μόνο κεφαλαία και με όριο 160 χαρακτήρες.

spacer.png
Model: OnePlus 8T Lunar Silver 12/256 (kebab)
ROM: OxygenOS v11.0.11.11.KB05AA (Android 11)
Mods: Magisk v23 + Riru + LSPosed
Recovery: TWRP 3.5.2_11

Link to comment
Share on other sites

Επισκέπτης
This topic is now closed to further replies.
 Κοινοποίηση

Ανακοινώσεις



×
×
  • Create New...