android:process
定义activity运行所在的进程名称。一般情况下,应用的所有组件都运行在为应用创建的默认的进程中,该默认进程的名称应用包名称一致。通过定义<application>元素的“process”属性可以为所有组件指定一个不同的默认进程。但是任意组件都可以重写默认进程,以便实现多进程操作。
如果该属性指定名称以“:”开头,则一个新的专属于该应用的进程将会被创建。如果该进程名以小写字母开头,则为该activity提供权限以让其在一个全局的进程中运行。这样会允许多个应用的不同组件共用一个进程,以便节省资源。
Android是支持多进程的,每个进程的内存使用限制一般为24MB的内存,所以当完成一些很耗费内存的操作如处理高分辨率图片时,需要单独开一个进程来执行该操作(上面的配置可以用来实现该操作)。即便如此,开发者还是不要随意多开进程来耗费用户的资源。(内存限制,有16MB,24MB, 32MB,很老的机型的内存限制会是16MB,这个具体还要再搜索下资料。。)
另外一些还有一些其他的方式来绕过内存限制,使用更多的资源来完成自己的任务,如下文(有待实践):
How to work around Android’s 24 MB memory limit
The
Android framework enforces a per-process 24 MB memory limit. On some older
devices, such as the G1, the limit is even lower at 16 MB.
What’s more, the memory used by Bitmaps is
included in the limit. For an application manipulating images it is pretty easy
to reach this limit and get the process killed with an OOM exception:
E/dalvikvm-heap(12517): 1048576-byte external allocation too large
for this process.
E/GraphicsJNI(12517): VM won't let us allocate 1048576
bytes
D/AndroidRuntime(12517): Shutting down VM
W/dalvikvm(12517): threadid=1: thread exiting with uncaught exception
(group=0x4001d7f0)
E/AndroidRuntime(12517): FATAL EXCEPTION: main
E/AndroidRuntime(12517): java.lang.OutOfMemoryError: bitmap size exceeds VM
budget
This limit is ridiculously low. For a device, like the Nexus
One, with 512MB of physical RAM, setting the per-process memory limit for the
foreground activity to only 5% of the RAM is a silly mistake. But anyway, that’s how things are and we have to live with it — i.e. find how to work around it.
There are two ways to allocate much more memory than the limit:
One way is to allocate memory from native code. Using the NDK
(native development kit) and JNI, it’s possible to
allocate memory from the C level (e.g. malloc/free or new/delete), and such
allocations are not counted towards the 24 MB limit. It’s true, allocating memory from native code is not as convenient as
from Java, but it can be used to store some large amounts of data in RAM (even
image data).
Another way, which works well for images, is to use OpenGL textures — the texture memory is not counted towards
the limit.
To see
how much memory your app has really allocated you can use
android.os.Debug.getNativeHeapAllocatedSize().
Using either of the two techniques presented above, on a Nexus One,
I could easily allocate 300MB for a single foreground process — more than 10 times the default 24 MB
limit.
分享到:
相关推荐
android检查内存泄露和用法 <!--==============================================================================--> android:name="com.squareup.leakcanary.internal.HeapAnalyzerService" android:enabled...
本篇文章将深入探讨Android内存管理的两个核心概念:堆(Heap)和栈(Stack),以及如何理解和解决Android内存溢出问题。 1. 堆与栈 堆和栈是Java虚拟机(JVM)中的两种主要内存区域,它们各自具有特定的用途和...
"解决安卓手机进程“android.process.acore”已停止运行问题" 安卓手机中进程“android.process.acore”已停止运行问题是安卓系统中常见的问题之一。该进程是安卓系统中的核心进程,负责管理联系人、电话簿和其他...
在Android系统中,线程(Thread)和进程(Process)是理解应用程序运行机制的关键概念。它们决定了应用如何分配资源和执行任务,对于优化性能、提高用户体验具有重要意义。 **线程** 线程是程序中的执行流,是操作...
然而,在使用Android Studio时,开发者可能会遇到一些问题,例如启动模拟器失败。这篇文章将介绍Android Studio启动模拟器失败的解决方法。 Android Studio模拟器是Android Studio中的一项功能强大且功能丰rich的...
Process Phoenix是由知名Android开发者Jake Wharton推出的一个开源项目,旨在帮助开发者更加优雅地处理应用程序进程的重启。在Android系统中,应用进程可能会因为各种原因被系统杀死,例如内存不足、系统优化或者...
《深入理解Android:卷2》共8章:第1章介绍了阅读本书所需要做的准备工作,包括Android 4.0源码的下载和编译、Eclipse环境的搭建,以及Android系统进程(system_process)的调试等;第2章对Java Binder和MessageQueue...
android的启动速度、虚拟机heapsize的大小调整、watchdog工作原理等问题;第5章讲解了android系统中常用的类,包括sp、wp、refbase、thread等类,同步类,以及java中的handler类和 looper类,掌握这些类的知识后方...
1. Android内存管理:Android应用程序运行在一个受限的内存环境中,每个应用都有一个由Dalvik虚拟机管理的内存预算。当应用尝试分配的内存超过这个预算时,就会触发OutOfMemoryError。 2. OutOfMemoryError:这是一...
在AndroidManifest.xml文件中,我们可以通过设置`android:process`属性来控制组件运行的进程。当这个属性的值未设置或者为空时,组件将运行在应用的默认进程中。如果设置了`android:process`,则组件将在指定的进程...
在Android系统中,获取手机的总内存和可用内存信息是开发者和普通用户都可能需要的操作。这涉及到系统层面的信息查询,通常需要通过编程接口(API)或者使用Android Debug Bridge(ADB)工具来实现。以下是对这个...
android:process=":my_process" /> ``` #### 十四、`android:screenOrientation` **属性描述:** 此属性用于指定`Activity`的屏幕方向。常见的值包括`unspecified`(默认值)、`landscape`(横屏模式)、`...
Server Process 的数量通常由`_processes` 参数决定,而每个Server Process 所占用的内存大小则受到多种因素的影响,如操作系统类型、Oracle版本、执行的操作类型等。 #### 三、Server Process 进程内存消耗的因素...
在使用SharedPreferences进行进程数据共享时,我们发现,有些虽然过时了,但是实际上还是可以用的。 只是Google不建议大家这么干了。所以这篇文章只是一个介绍实现,科普。 ...
16. android:process="string" 指定activity运行的进程名称。默认情况下,所有组件在同一进程中,但可以自定义以实现多进程运行。以":"开头表示创建专属进程,小写开头则可能与其他应用共享进程。 17. android:...
<activity android:name=".A2" android:label="@string/app_name2" android:process=":process.sub" android:icon="@drawable/icon2" android:launchMode="singleInstance"> <action android:name="android....
在Android系统中,开发者可以通过Android提供的API来获取系统的内存信息以及正在运行的进程状态。这一功能主要涉及到`ActivityManager`类的使用。`ActivityManager`是Android SDK中的一个关键组件,它提供了对系统...
在Android系统中,每个应用程序都运行在自己的进程中,这些进程由Linux内核管理。了解如何通过分析进程信息来获取当前正在运行的APP包名对于开发者来说是很有价值的。本篇将详细介绍如何利用Java代码实现这一功能,...
ProcessHacker是一款强大的系统信息工具,它提供了进程管理、服务管理、硬件监控、内存查看等多种功能,深受系统管理员和高级用户的喜爱。这个"processhacker-2.39-bin"压缩包很可能包含了ProcessHacker的二进制版本...
配置AndroidManifest.xml 使用百度SDK时,应用的AndroidManifest.xml主要需要注意以下三项: 4.1、权限 不同的功能需要申请不同的权限,因此在实际使用时,最好参考... android:process=":remote"> ............