无法加载memtrack模块Logcat错误


84

我收到一个错误 Couldn't load memtrack module (No such file or directory) failed to load memtrack module: -2在运行。

StackTrace错误:

 E/SoundPool(1280)       : error loading /system/media/audio/ui/Effect_Tick.ogg 
 E/SoundPool(1280)       : error loading /system/media/audio/ui/KeypressStandard.ogg       
 E/SurfaceFlinger(931)   : glCheckFramebufferStatusOES error 733995180
 E/memtrack(1873)        : Couldn't load memtrack module (No such file or directory)
 E/android.os.Debug(1873): failed to load memtrack module: -2
 E/libEGL(931)           : called unimplemented OpenGL ES API
 E/libEGL(931)           : called unimplemented OpenGL ES API
 E/libEGL(931)           : called unimplemented OpenGL ES API
 E/libEGL(931)           : called unimplemented OpenGL ES API
 E/SurfaceFlinger(931)   : glCheckFramebufferStatusOES error 733995180
 E/SurfaceFlinger(931)   : got GL_FRAMEBUFFER_COMPLETE_OES error while taking screenshot
 E/libEGL(931)           : called unimplemented OpenGL ES API
 E/libEGL(931)           : called unimplemented OpenGL ES API

表现:

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.hive"
    android:versionCode="1"
    android:versionName="1.0">

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

<uses-permission android:name="android.permission.INTERNET"/>
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" android:name="com.sit.gems.app.GemsApplication"
        android:theme="@style/AppTheme" >

    <activity
            android:name="com.sit.gems.activity.SplashActivity"
            android:label="@string/app_name" android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.sit.gems.activity.HomeActivity" android:screenOrientation="portrait"></activity>
    </application>

</manifest>

SplashActivity.java:

package com.sit.gems.activity;
import com.example.hive.R;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;

public class SplashActivity extends FragmentActivity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.layout_home);
        startActivity(new Intent(SplashActivity.this,HomeActivity.class));
        SplashActivity.this.finish();
    }

}

layout_home.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TabHost
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_above="@android:id/tabs" >

                <FrameLayout
                    android:id="@+id/tab_home"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent" />

                <FrameLayout
                    android:id="@+id/tab_video"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent" />

                <FrameLayout
                    android:id="@+id/tab_audio"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent" >
                </FrameLayout>

                <FrameLayout
                    android:id="@+id/tab_blog"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent" >
                </FrameLayout>

                <FrameLayout
                    android:id="@+id/tab_gal"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent" >
                </FrameLayout>

                <FrameLayout
                    android:id="@+id/tab_more"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent" >
                </FrameLayout>
            </FrameLayout>

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:background="@drawable/bottom_bar"
                android:divider="@null" />

            <!-- android:background="#d8e49c" -->
        </RelativeLayout>
    </TabHost>

</LinearLayout>

输出:

最后,它显示空白屏幕。

在此处输入图片说明

有人知道如何解决这些错误吗?


1
您解决问题了吗?
Cocorico 2014年

@Cocorico不,我还没有解决这些问题。你知道吗?
2014年

我认为您对OpenGl有兴趣。您使用的是仿真器还是虚拟设备?
Cocorico 2014年

@Cocorico我正在使用模拟器。
史蒂夫

2
@ user2450263对我没有用
Steve

Answers:


51

正如您在上面的评论中链接的问题看到的那样,该错误的结果是:

“ [...]加载{some}硬件模块时遇到了问题。这可能与GPU支持,sdcard处理等基本有关。”

下面的步骤1应该可以解决此问题。同样,正如我所看到的,清单中有一些奇怪的包名称:

  • 打包=“com.example.hive”<manifest>标签,
  • android:name =“ com.sit.gems.app.GemsApplication”用于<application>
  • android:name =“ com.sit.gems.activity”<activity>

如您所知,这些事情不会阻止您的应用程序显示。但我觉得:

Couldn't load memtrack module error可能因为模拟器配置的问题发生,因为你的项目中包含许多组织的问题,它可能有助于给人耳目一新的重新设计。

为了更好地使用并且少花钱,可以按照以下提示解决:


1.尝试其他模拟器...

甚至是真正的设备!该memtrack module错误似乎与您的模拟器有关。因此,将其更改为Run configuration,不要忘记也进行更改API


2. OpenGL错误日志

对于OpenGl错误,例如called unimplemented OpenGL ES API,这不是错误而是声明!您应该在清单中启用它(如果在内部使用GLSurfaceView ,则可以阅读此答案HomeActivity.java,这可能会有所帮助):

<uses-feature android:glEsVersion="0x00020000"></uses-feature>  
// or
<uses-feature android:glEsVersion="0x00010001" android:required="true" />

3.使用同一包

不要为中的所有标签声明不同的包名称Manifest。您应该为ManifestActivities等设置相同的名称。看起来像这样:

<!-- set the general package -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sit.gems.activity"
    android:versionCode="1"
    android:versionName="1.0" >

    <!-- don't set a package name in <application> -->
    <application ... >

        <!-- then, declare the activities -->
        <activity
            android:name="com.sit.gems.activity.SplashActivity" ... >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!-- same package here -->
        <activity
            android:name="com.sit.gems.activity.HomeActivity" ... >
        </activity>
    </application>
</manifest>  

4.不要迷失于布局:

您应该为其设置其他布局,SplashScreenActivity.java因为您没有TabHost在启动屏幕上使用,这不是一种安全的资源方式。使用不同的名称声明特定的布局,例如应用名称和徽标:

// inside SplashScreen class
setContentView(R.layout.splash_screen);

// layout splash_screen.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent" 
     android:gravity="center"
     android:text="@string/appname" />  

避免在不使用布局的活动中使用布局。


5.启动画面?

最后,我不清楚您的目的SplashScreenActivity。它设置一个内容视图并直接完成。这没用。

由于它的名字是Splash Screen,我假设您要在启动屏幕之前显示一个屏幕HomeActivity。因此,您应该这样做并且不要使用TabHost布局;)

// FragmentActivity is also useless here! You don't use a Fragment into it, so, use traditional Activity
public class SplashActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // set your splash_screen layout
        setContentView(R.layout.splash_screen);

        // create a new Thread
        new Thread(new Runnable() {
            public void run() {
                try {
                    // sleep during 800ms
                    Thread.sleep(800);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                // start HomeActivity
                startActivity(new Intent(SplashActivity.this, HomeActivity.class));
                SplashActivity.this.finish();
            }
        }).start();
    }
}  

我希望这种技巧可以帮助您实现所需的目标。
如果不是这种情况,请告诉我如何为您服务。


我正在使用TabHost in layout_home.xml
Steve

而且为什么SplashScreenActivity没有任何内容?此活动显示您的TabHost?
2014年

我再说一遍,我不确定,但是您应该至少尝试1、2和4。希望这会有所帮助!
2014年

是的,我正在尝试。稍后会告诉您结果。
史蒂夫

1
我得到了一份输出。您的回答对我有所帮助。您很棒。我做了您所说的一切。最后,我创建并添加了一个名为blogSelected的方法。这些项目与显示博客有关。我认为这是我错过该方法的错误。对我来说。感谢您有一个愉快的一天。
史蒂夫

4

我有同样的错误。用适当的API级别创建新的AVD解决了我的问题。


0

我遇到了同样的问题,但是当我将AVD设备的外观更改为HVGA时,它起作用了。


-2

您是否调用了ViewTreeObserver并没有将其删除。

    mEtEnterlive.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
         // do nothing here can cause such problem
    });

-2

我也遇到了这个问题,也正在模拟器上运行。.Logcat上也显示了相同的消息,但是它并没有影响应用程序的功能。但这很烦人,我不喜欢看到我不理解的日志错误。

无论如何,我通过增加模拟器上的RAM摆脱了消息。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.