Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/401.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/231.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 主活动在slpash屏幕后显示白色屏幕_Java_Android_Xml_Splash Screen - Fatal编程技术网

Java 主活动在slpash屏幕后显示白色屏幕

Java 主活动在slpash屏幕后显示白色屏幕,java,android,xml,splash-screen,Java,Android,Xml,Splash Screen,我正在创建一个应用程序,其中我在一个项目中创建了导航抽屉,在第二个项目中创建了启动屏幕和一个随机活动。 因此,我正在尝试合并它们。我已设置启动屏幕和随机活动,因此合并操作正确。 然后我在随机活动上设置了一个按钮,该按钮将重定向到主要活动(这里是homeActivity),但当我点击按钮时,它将获得白色屏幕 在HomeActivity中,我已经使用了导航抽屉,因为我已经提到过,那么我如何解决mainActivity上的白屏问题呢??? 我在这里看到了一些问题,但我没有得到我的答案 使用androi

我正在创建一个应用程序,其中我在一个项目中创建了导航抽屉,在第二个项目中创建了启动屏幕和一个随机活动。 因此,我正在尝试合并它们。我已设置启动屏幕和随机活动,因此合并操作正确。

然后我在随机活动上设置了一个按钮,该按钮将重定向到主要活动(这里是homeActivity),但当我点击按钮时,它将获得白色屏幕

在HomeActivity中,我已经使用了导航抽屉,因为我已经提到过,那么我如何解决mainActivity上的白屏问题呢??? 我在这里看到了一些问题,但我没有得到我的答案

使用android studion 2.1.2 渐变版本2.10

谢谢

代码

这里是mainActivity(这里是homeActivity)

activity_main.xml(homeActivity)

闪屏

 protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_welcome_splash);
    getSupportActionBar().hide();
    Thread ssThread = new Thread(){
        @Override
        public void run() {
            try {
                StartAnimations();
                sleep(3500);
                Boolean isfirstrun = getSharedPreferences("PREFERENCES",MODE_PRIVATE).getBoolean("first",true);
                if(isfirstrun){
                    Intent inst = new Intent(welcome_splash.this,install_server.class);
                    startActivity(inst);
                    getSharedPreferences("PREFERENCES",MODE_PRIVATE).edit().putBoolean("first",false).commit();
                }else{
                Intent starthomeScreen = new Intent(getApplicationContext(),ipInfo.class);
                startActivity(starthomeScreen);}
                finish();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    };
    ssThread.start();


}
private void StartAnimations() {
    Animation anim = AnimationUtils.loadAnimation(this, R.anim.alpha);
    anim.reset();
    RelativeLayout l = (RelativeLayout) findViewById(R.id.rel_lay);
    l.clearAnimation();
    l.startAnimation(anim);

    anim = AnimationUtils.loadAnimation(this, R.anim.translate);
    anim.reset();
    ImageView iv = (ImageView) findViewById(R.id.logo);
    iv.clearAnimation();
    iv.startAnimation(anim);


}
logcat是

01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 574: Landroid/content/ContextWrapper;.getObbDirs ()[Ljava/io/File;
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x1356
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.app.Activity.startPostponedEnterTransition, referenced from method com.example.admin.pcremote.homeActivity.access$super
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 249: Landroid/app/Activity;.startPostponedEnterTransition ()V
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x135c
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.content.ContextWrapper.getExternalCacheDirs, referenced from method com.example.admin.pcremote.homeActivity.access$super
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 565: Landroid/content/ContextWrapper;.getExternalCacheDirs ()[Ljava/io/File;
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x13ce
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.app.Activity.onEnterAnimationComplete, referenced from method com.example.admin.pcremote.homeActivity.access$super
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 145: Landroid/app/Activity;.onEnterAnimationComplete ()V
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x1411
01-01 16:55:22.735 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 537K, 9% free 8425K/9159K, paused 2ms, total 2ms
01-01 16:55:22.735 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 9.256MB for 1048588-byte allocation
01-01 16:55:22.745 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 4K, 8% free 9444K/10247K, paused 10ms+0ms, total 12ms
01-01 16:55:22.755 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed <1K, 8% free 9444K/10247K, paused 2ms, total 2ms
01-01 16:55:22.755 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 11.501MB for 2359308-byte allocation
01-01 16:55:22.765 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 0K, 7% free 11748K/12615K, paused 1ms+1ms, total 5ms
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.LinearLayout$LayoutParams.<init>, referenced from method android.support.design.widget.AppBarLayout$LayoutParams.<init>
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve direct method 19953: Landroid/widget/LinearLayout$LayoutParams;.<init> (Landroid/widget/LinearLayout$LayoutParams;)V
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x70 at 0x0000
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.LinearLayout$LayoutParams.<init>, referenced from method android.support.design.widget.AppBarLayout$LayoutParams.<init>
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve direct method 19953: Landroid/widget/LinearLayout$LayoutParams;.<init> (Landroid/widget/LinearLayout$LayoutParams;)V
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x70 at 0x0000
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.ArrayAdapter.getDropDownViewTheme, referenced from method com.example.admin.pcremote.listadapter.access$super
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 19710: Landroid/widget/ArrayAdapter;.getDropDownViewTheme ()Landroid/content/res/Resources$Theme;
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x014a
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.ArrayAdapter.setDropDownViewTheme, referenced from method com.example.admin.pcremote.listadapter.access$super
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 19720: Landroid/widget/ArrayAdapter;.setDropDownViewTheme (Landroid/content/res/Resources$Theme;)V
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x01d4
01-01 16:55:22.805 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 3414K, 32% free 8697K/12615K, paused 2ms, total 4ms
01-01 16:55:22.805 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 9.084MB for 589836-byte allocation
01-01 16:55:22.815 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 11K, 27% free 9262K/12615K, paused 11ms+0ms, total 14ms
01-01 16:55:22.815 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 258K, 29% free 9015K/12615K, paused 1ms, total 2ms
01-01 16:55:22.815 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 9.808MB for 1022412-byte allocation
01-01 16:55:22.825 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed <1K, 21% free 10013K/12615K, paused 2ms, total 2ms
01-01 16:55:22.825 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 0K, 21% free 10013K/12615K, paused 2ms, total 2ms
01-01 16:55:22.825 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 12.001MB for 2300412-byte allocation
01-01 16:55:22.835 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 0K, 18% free 12260K/14919K, paused 1ms+0ms, total 4ms
01-01 16:55:22.845 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 1396K, 19% free 12175K/14919K, paused 2ms, total 2ms
01-01 16:55:22.845 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 12.918MB for 1048588-byte allocation
01-01 16:55:22.855 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed <1K, 18% free 13199K/16007K, paused 2ms, total 2ms
01-01 16:55:22.855 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 0K, 18% free 13199K/16007K, paused 2ms, total 2ms
01-01 16:55:22.865 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 15.168MB for 2359308-byte allocation
01-01 16:55:22.865 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 0K, 16% free 15503K/18375K, paused 0ms+1ms, total 3ms
01-01 16:55:22.895 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.support.v7.widget.LinearLayoutCompat.drawableHotspotChanged, referenced from method android.support.design.internal.ForegroundLinearLayout.drawableHotspotChanged
01-01 16:55:22.895 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 16053: Landroid/support/v7/widget/LinearLayoutCompat;.drawableHotspotChanged (FF)V
01-01 16:55:22.895 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x0000
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm:VFY:无法解析虚拟方法574:Landroid/content/ContextWrapper;。getObbDirs()[Ljava/io/File;
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm:VFY:在0x1356处替换操作码0x6f
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm:找不到方法android.app.Activity.startpostPonterTransition,从方法com.example.admin.pcremote.homeActivity.access$super引用
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm:VFY:无法解析虚拟方法249:Landroid/app/Activity;.startPostponedeterTransition()V
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm:VFY:在0x135c处替换操作码0x6f
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm:找不到方法android.content.ContextWrapper.getExternalCacheDirs,从方法com.example.admin.pcremote.homeActivity.access$super引用
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm:VFY:无法解析虚拟方法565:Landroid/content/ContextWrapper;.getExternalCacheDirs()[Ljava/io/File;
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm:VFY:在0x13ce处替换操作码0x6f
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm:找不到方法android.app.Activity.onEnterAnimationComplete,从方法com.example.admin.pcremote.homeActivity.access$super引用
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm:VFY:无法解析虚拟方法145:Landroid/app/Activity;.onEnterAnimationComplete()V
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm:VFY:在0x1411处替换操作码0x6f
01-01 16:55:22.735 4495-4495/com.example.admin.pcremote D/dalvikvm:GC_FOR_ALLOC freed 537K,9%free 8425K/9159K,暂停2ms,总计2ms
01-01 16:55:22.735 4495-4495/com.example.admin.pcremote I/dalvikvm堆:将堆(frag case)增长到9.256MB,以分配1048588字节
01-01 16:55:22.745 4495-4499/com.example.admin.pcremote D/dalvikvm:GC_并发释放4K,8%释放9444K/10247K,暂停10ms+0ms,总计12ms

01-01 16:55:22.755 4495-4495/com.example.admin.pcremote D/dalvikvm:GC_FOR_ALLOC freed最后,在查看与主要活动相关的所有其他布局文件后,我们找到了问题的解决方案

解决方案是 设计中的content\u main.xml中的视图从AppTheme.NoActionBar更改为AppTheme 它以正常的方式显示活动

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout        
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.admin.pcremote.homeActivity">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main" /> 
</android.support.design.widget.CoordinatorLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.admin.pcremote.homeActivity"
tools:showIn="@layout/app_bar_main">

<ListView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/listView"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true">
</ListView>

</RelativeLayout>
    AlertDialog.Builder builder = new AlertDialog.Builder(ipInfo.this);
     builder.setTitle("Warning");
      builder.setMessage("IP address or port number cannot be empty!!!").setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {
                    dialog.cancel();
                      }}).setNegativeButton("Continue Anyway", new DialogInterface.OnClickListener() {
      @Override
       public void onClick(DialogInterface dialog, int which) {
         Intent inst = new Intent(ipInfo.this,homeActivity.class);//here is redirection of home activity
         startActivity(inst);
       }});
       AlertDialog alert = builder.create();
       alert.setIcon(R.drawable.ic_error_outline_black_24dp);
       alert.show();
 protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_welcome_splash);
    getSupportActionBar().hide();
    Thread ssThread = new Thread(){
        @Override
        public void run() {
            try {
                StartAnimations();
                sleep(3500);
                Boolean isfirstrun = getSharedPreferences("PREFERENCES",MODE_PRIVATE).getBoolean("first",true);
                if(isfirstrun){
                    Intent inst = new Intent(welcome_splash.this,install_server.class);
                    startActivity(inst);
                    getSharedPreferences("PREFERENCES",MODE_PRIVATE).edit().putBoolean("first",false).commit();
                }else{
                Intent starthomeScreen = new Intent(getApplicationContext(),ipInfo.class);
                startActivity(starthomeScreen);}
                finish();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    };
    ssThread.start();


}
private void StartAnimations() {
    Animation anim = AnimationUtils.loadAnimation(this, R.anim.alpha);
    anim.reset();
    RelativeLayout l = (RelativeLayout) findViewById(R.id.rel_lay);
    l.clearAnimation();
    l.startAnimation(anim);

    anim = AnimationUtils.loadAnimation(this, R.anim.translate);
    anim.reset();
    ImageView iv = (ImageView) findViewById(R.id.logo);
    iv.clearAnimation();
    iv.startAnimation(anim);


}
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 574: Landroid/content/ContextWrapper;.getObbDirs ()[Ljava/io/File;
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x1356
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.app.Activity.startPostponedEnterTransition, referenced from method com.example.admin.pcremote.homeActivity.access$super
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 249: Landroid/app/Activity;.startPostponedEnterTransition ()V
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x135c
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.content.ContextWrapper.getExternalCacheDirs, referenced from method com.example.admin.pcremote.homeActivity.access$super
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 565: Landroid/content/ContextWrapper;.getExternalCacheDirs ()[Ljava/io/File;
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x13ce
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.app.Activity.onEnterAnimationComplete, referenced from method com.example.admin.pcremote.homeActivity.access$super
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 145: Landroid/app/Activity;.onEnterAnimationComplete ()V
01-01 16:55:22.725 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x1411
01-01 16:55:22.735 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 537K, 9% free 8425K/9159K, paused 2ms, total 2ms
01-01 16:55:22.735 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 9.256MB for 1048588-byte allocation
01-01 16:55:22.745 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 4K, 8% free 9444K/10247K, paused 10ms+0ms, total 12ms
01-01 16:55:22.755 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed <1K, 8% free 9444K/10247K, paused 2ms, total 2ms
01-01 16:55:22.755 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 11.501MB for 2359308-byte allocation
01-01 16:55:22.765 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 0K, 7% free 11748K/12615K, paused 1ms+1ms, total 5ms
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.LinearLayout$LayoutParams.<init>, referenced from method android.support.design.widget.AppBarLayout$LayoutParams.<init>
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve direct method 19953: Landroid/widget/LinearLayout$LayoutParams;.<init> (Landroid/widget/LinearLayout$LayoutParams;)V
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x70 at 0x0000
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.LinearLayout$LayoutParams.<init>, referenced from method android.support.design.widget.AppBarLayout$LayoutParams.<init>
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve direct method 19953: Landroid/widget/LinearLayout$LayoutParams;.<init> (Landroid/widget/LinearLayout$LayoutParams;)V
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x70 at 0x0000
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.ArrayAdapter.getDropDownViewTheme, referenced from method com.example.admin.pcremote.listadapter.access$super
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 19710: Landroid/widget/ArrayAdapter;.getDropDownViewTheme ()Landroid/content/res/Resources$Theme;
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x014a
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.widget.ArrayAdapter.setDropDownViewTheme, referenced from method com.example.admin.pcremote.listadapter.access$super
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 19720: Landroid/widget/ArrayAdapter;.setDropDownViewTheme (Landroid/content/res/Resources$Theme;)V
01-01 16:55:22.775 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x01d4
01-01 16:55:22.805 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 3414K, 32% free 8697K/12615K, paused 2ms, total 4ms
01-01 16:55:22.805 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 9.084MB for 589836-byte allocation
01-01 16:55:22.815 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 11K, 27% free 9262K/12615K, paused 11ms+0ms, total 14ms
01-01 16:55:22.815 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 258K, 29% free 9015K/12615K, paused 1ms, total 2ms
01-01 16:55:22.815 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 9.808MB for 1022412-byte allocation
01-01 16:55:22.825 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed <1K, 21% free 10013K/12615K, paused 2ms, total 2ms
01-01 16:55:22.825 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 0K, 21% free 10013K/12615K, paused 2ms, total 2ms
01-01 16:55:22.825 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 12.001MB for 2300412-byte allocation
01-01 16:55:22.835 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 0K, 18% free 12260K/14919K, paused 1ms+0ms, total 4ms
01-01 16:55:22.845 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 1396K, 19% free 12175K/14919K, paused 2ms, total 2ms
01-01 16:55:22.845 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 12.918MB for 1048588-byte allocation
01-01 16:55:22.855 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed <1K, 18% free 13199K/16007K, paused 2ms, total 2ms
01-01 16:55:22.855 4495-4495/com.example.admin.pcremote D/dalvikvm: GC_FOR_ALLOC freed 0K, 18% free 13199K/16007K, paused 2ms, total 2ms
01-01 16:55:22.865 4495-4495/com.example.admin.pcremote I/dalvikvm-heap: Grow heap (frag case) to 15.168MB for 2359308-byte allocation
01-01 16:55:22.865 4495-4499/com.example.admin.pcremote D/dalvikvm: GC_CONCURRENT freed 0K, 16% free 15503K/18375K, paused 0ms+1ms, total 3ms
01-01 16:55:22.895 4495-4495/com.example.admin.pcremote I/dalvikvm: Could not find method android.support.v7.widget.LinearLayoutCompat.drawableHotspotChanged, referenced from method android.support.design.internal.ForegroundLinearLayout.drawableHotspotChanged
01-01 16:55:22.895 4495-4495/com.example.admin.pcremote W/dalvikvm: VFY: unable to resolve virtual method 16053: Landroid/support/v7/widget/LinearLayoutCompat;.drawableHotspotChanged (FF)V
01-01 16:55:22.895 4495-4495/com.example.admin.pcremote D/dalvikvm: VFY: replacing opcode 0x6f at 0x0000