Tag: 安卓

如何启动Android的内核编程?

我有6个月的Android经验,开发简单的基于UI的应用程序。 现在我想编写针对Android核心内核的应用程序。 例如,我想开发一个Android中不存在的框架。 要做到这一点,我们必须编写内核的代码。 我不知道在哪里以及如何启动Android内核编程。 如果有人知道如何启动它,请帮助我。

ProGuard:库类的重复定义?

我运行我的Android项目的ProGuard并得到以下警告: Note: duplicate definition of library class [org.apache.http.conn.scheme.HostNameResolver] Note: duplicate definition of library class [org.apache.http.conn.scheme.SocketFactory] Note: duplicate definition of library class [org.apache.http.conn.ConnectTimeoutException] Note: duplicate definition of library class [org.apache.http.params.HttpParams] Note: duplicate definition of library class [android.net.http.SslCertificate$DName] Note: duplicate definition of library class [android.net.http.SslError] Note: duplicate definition of library class [android.net.http.SslCertificate] Note: there were 7 duplicate […]

IndexNotReadyException – Android Studio

在properties选项卡中更改widget的值时, AndroidStudio会一直抛出IndexNotReadyException 。 但重试几分钟后,错误不会发生。 这里是错误日志: com.intellij.openapi.project.IndexNotReadyException: Please change caller according to com.intellij.openapi.project.IndexNotReadyException documentation at com.intellij.util.indexing.FileBasedIndexImpl.handleDumbMode(FileBasedIndexImpl.java:856) at com.intellij.util.indexing.FileBasedIndexImpl.ensureUpToDate(FileBasedIndexImpl.java:805) at com.intellij.util.indexing.FileBasedIndexImpl.processExceptions(FileBasedIndexImpl.java:930) at com.intellij.util.indexing.FileBasedIndexImpl.collectFileIdsContainingAllKeys(FileBasedIndexImpl.java:1190) at com.intellij.util.indexing.FileBasedIndexImpl.processFilesContainingAllKeys(FileBasedIndexImpl.java:1018) at com.intellij.psi.impl.search.PsiSearchHelperImpl$26.compute(PsiSearchHelperImpl.java:1096) at com.intellij.psi.impl.search.PsiSearchHelperImpl$26.compute(PsiSearchHelperImpl.java:1093) 我已经更新了AndroidStudio ,最新的一个。 但仍然发生错误。 任何修复或解决?

Android中的FLAG_ACTIVITY_CLEAR_TOP

有人能以一种非常简单的方式解释我FLAG_ACTIVITY_CLEAR_TOP是什么意思? 我知道有很多关于它的问题,但是没有一个答案让我满意。 有人可以举一个例子,这个标志是有用的吗? 谢谢。

Android:在桌面上的adb拉文件

试图从设备复制文件到桌面,这里是一个命令: adb pull sdcard/log.txt Users/admin/Desktop 但是这个命令会在adb所在的platform-tools文件夹下创build一个文件夹Users / admin / Desktop。 如何将文件拉到我的桌面?

假来电Android

我怎样才能假装在Android模拟器的来电? 下面让我打个电话,但我想强制模拟器接到一个电话,最好从我select的号码。 adb shell am start -a android.intent.action.CALL tel:1112223333 所以,上面的命令直接相反。

在android中camera.setParameters失败

我已经在我的应用程序中包含了相机function。 我也推出了在市场上的应用程序。 我从其中一个用户那里得到一个错误信息,他打开相机时出现错误。 我已经在2.1上testing了该设备上的应用程序。 我从用户得到的错误是使用nexus之一将主要运行2.2 …这是我收到的logcat错误… java.lang.RuntimeException: setParameters failed at android.hardware.Camera.native_setParameters(Native Method) at android.hardware.Camera.setParameters(Camera.java:647) at com.CameraApp.Preview.surfaceChanged(Preview.java:67) at android.view.SurfaceView.updateWindow(SurfaceView.java:538) at android.view.SurfaceView.dispatchDraw(SurfaceView.java:339) at android.view.ViewGroup.drawChild(ViewGroup.java:1638) at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) at android.view.ViewGroup.drawChild(ViewGroup.java:1638) at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) at android.view.ViewGroup.drawChild(ViewGroup.java:1638) at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) at android.view.View.draw(View.java:6743) at android.widget.FrameLayout.draw(FrameLayout.java:352) at android.view.ViewGroup.drawChild(ViewGroup.java:1640) at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) at android.view.View.draw(View.java:6743) at android.widget.FrameLayout.draw(FrameLayout.java:352) at com.android.internal.policy.impl.PhoneWindow$DecorView.draw(PhoneWindow.java:1842) at android.view.ViewRoot.draw(ViewRoot.java:1407) at android.view.ViewRoot.performTraversals(ViewRoot.java:1163) at android.view.ViewRoot.handleMessage(ViewRoot.java:1727) at android.os.Handler.dispatchMessage(Handler.java:99) at […]

Android通过对话框分享

我已经看到了应用程序中的“共享通过”对话框,如TFLN(来自昨晚的文本)。 看起来像这样: 分享对话http://garr.me/wp-content/uploads/2009/12/sharevia.jpg 我期待分享文字。 有人能指出我正确的方向吗? 这是完成意向?

从adb获得包的可启动活动名称

有没有办法使用adb获取包的可启动活动? 对于一个没有根据的手机(即没有从/ data / app目录中取出apk并用appt检查)。 我试过dumpsys,但是没有包含默认启动活动的信息。 谢谢

如何检查蓝牙是否启用编程?

我想检查是否在任何Android设备上定期启用蓝牙。 是否有任何意图我可以捕捉使用BroadcastReceiver这样做,还是有其他方法来做到这一点?