I am getting an error Couldn\'t load memtrack module (No such file or directory) failed to load memtrack module: -2
at run time.
StackTrace Error:
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
Manifest:
<?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>
Output:
Finally it displays the blank screen.
Anybody know how to solve these stacktrace error.Thanks in advance.