PDA

View Full Version : ارور در ریسکایلر ویو



modernserver
دوشنبه 22 آذر 1395, 00:04 صبح
سلام
ینده در یک تب که از ویو پیجر و فرگمنت استفاده کردم ریسکایلرویو با لایه اختصاصی که کارد ویو هستش درست کردم

این کد فرگمنت




package com.sayeben.myapplication;

/**
* Created by Mohammad on 04/12/2016.
*/


import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import java.util.List;


public class FrMission extends Fragment{

private database db;
private Context mycontext;

private Button btn;
private TextView subject;
private TextView time;
private Button edit;
private Button ok;
private int count;

private RecyclerView recyclerView;
private MyAdapter adapter;
private List<Card> CardList;







public FrMission() {
// Required empty public constructor
}

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {


try {

db = new database(getActivity());
adapter = new MyAdapter(getActivity(), CardList);



RecyclerView.LayoutManager mlayout =new LinearLayoutManager(getContext());

recyclerView.setLayoutManager(mlayout);
recyclerView.setAdapter(adapter);

//Card a = new Card("name");
// CardList.add(a);


}catch (Exception e){

Toast.makeText(getActivity(),e.getMessage(),Toast. LENGTH_LONG).show();
}










return inflater.inflate(R.layout.fr_mission, container, false);


}

public void onViewCreated(View view, Bundle savedInstanceState){
super.onViewCreated(view, savedInstanceState);
// initialise your views



}

}


اینم کدهای لایه فرگمنت


<FrameLayout
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:background="@color/colorBg"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.sayeben.myapplication.MainActivity"
tools:showIn="@layout/activity_main">

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:scrollbars="vertical" />

</FrameLayout>


کدهای کلاس myAdapter


package com.sayeben.myapplication;

import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;

import java.util.List;

/**
* Created by Mohammad on 06/12/2016.
*/

public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder> {


private Context mContext;
private List<Card> cardList;

public class MyViewHolder extends RecyclerView.ViewHolder {


private Button btn;
private TextView subject;
private TextView time;
private Button edit;
private Button ok;

public MyViewHolder(View view) {
super(view);

ok = (Button) view.findViewById(R.id.daily_ok);
edit = (Button) view.findViewById(R.id.daily_edit);
btn = (Button) view.findViewById(R.id.daily_button);
subject = (TextView) view.findViewById(R.id.daily_subject);
time = (TextView) view.findViewById(R.id.daily_time);


}

}

public MyAdapter(Context mContext, List<Card> cardList) {
this.mContext = mContext;
this.cardList = cardList;
}

@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.dailycard, parent, false);

return new MyViewHolder(itemView);

}

@Override
public void onBindViewHolder(final MyViewHolder holder, int position) {
Card card = cardList.get(position);
holder.subject.setText(card.getName());




}


@Override
public int getItemCount() {



return cardList.size();
}




}




و اینم کدهای کلاس Card


package com.sayeben.myapplication;

/**
* Created by Mohammad on 06/12/2016.
*/

public class Card {

private String name;
// private int numOfcard;
// private int thumbnail;


public Card() {

}

public Card(String name ){

this.name=name;
// this.numOfcard=numOfcard;
// this.thumbnail=thumbnail;

}

public String getName(){

return name;
}

public void setName(){

this.name=name;
}

/*
public int getNumOfcard(){


return numOfcard;
}

public void setNumOfcard(int numOfcard){

this.numOfcard=numOfcard;
}

public int getThumbnail() {
return thumbnail;
}

public void setThumbnail(int thumbnail) {
this.thumbnail = thumbnail;
}
*/


}








و همچنین کدهای لایه اختصاصی


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

<android.support.v7.widget.CardView
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="170dp"

android:layout_marginTop="5dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
app:cardCornerRadius="5dp">


<TableLayout
android:layout_width="match_parent"
android:layout_height="170dp">

<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right">

<TextView
android:text="Subject"
android:textColor="@color/black"
android:gravity="end"
android:layout_marginTop="22dp"
android:id="@+id/daily_subject"
android:layout_marginRight="-65dp"
android:textSize="18sp" />


<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
app:srcCompat="@mipmap/ic_launcher"
android:id="@+id/imageView"
android:layout_marginTop="12dp"
android:layout_marginLeft="60dp" />

</TableRow>

<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">

<Button
android:text="Button One"
android:layout_marginTop="3dp"
android:layout_marginRight="75dp"
android:id="@+id/daily_button" />

<TextView
android:text="Time"
android:textSize="18sp"
android:textColor="@color/black"
android:gravity="end"
android:layout_marginTop="5dp"
android:layout_marginRight="55dp"
android:id="@+id/daily_time"
/>

<TextView
android:text="@string/alarm_time"
android:textSize="18sp"
android:textColor="@color/black"
android:gravity="end"
android:layout_marginTop="5dp"
android:layout_width="wrap_content"
android:layout_marginLeft="-50dp" />

</TableRow>

<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<View
android:layout_height="1dp"
android:background="@android:color/darker_gray"
android:layout_marginTop="12dp"
android:layout_width="match_parent"
android:layout_weight="1"/>

</TableRow
>

<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">

<Button
android:text="انجام شد!"
android:id="@+id/daily_ok"
android:layout_marginRight="40dp"
android:layout_marginLeft="40dp"
android:gravity="center"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_width="wrap_content"
/>

<Button
android:text="ویرایش"
android:id="@+id/daily_edit"
android:gravity="center"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_width="wrap_content"
android:layout_marginLeft="40dp"
/>


</TableRow>


</TableLayout>




</android.support.v7.widget.CardView>
</LinearLayout>



اما در اجرا فورس کلوز میده اومدم onCreat رو در try catch رار دادم و پیامو توی توست نمایش دادم ( عکس ارور پایین )

143730

Nevercom
دوشنبه 22 آذر 1395, 16:42 عصر
تو فرگمنت جایی نمیبینم که RecyclerView رو Initialize کرده باشید، به عبارتی باید یه جایی تو کدها عبارت view.findViewById رو داشته باشید و RecyclerView رو تو Layout پیدا کنید.

armankh2015
دوشنبه 22 آذر 1395, 17:37 عصر
مشکل اینجاست که ریسایکلر ویوو رو در جای نا مناسبی مقدار دهی کردین . توی متد onViewCreated این کد رو بزنید recyclerView = (Recycler View) view.findviewbyid(R.id.recycler_view); a و کلا کدهایی که توی متد oncreate نوشتین رو منتقل کنید به متد onViewCreated انشالا که مشکل حل بشه.

modernserver
دوشنبه 22 آذر 1395, 19:08 عصر
تو فرگمنت جایی نمیبینم که RecyclerView رو Initialize کرده باشید، به عبارتی باید یه جایی تو کدها عبارت view.findViewById رو داشته باشید و RecyclerView رو تو Layout پیدا کنید.

ممنون

اینجا معرفی کردم


کدهای کلاس myAdapter


package com.sayeben.myapplication;

import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;

import java.util.List;

/**
* Created by Mohammad on 06/12/2016.
*/
public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder> {


private Context mContext;
private List<Card> cardList;

public class MyViewHolder extends RecyclerView.ViewHolder {


private Button btn;
private TextView subject;
private TextView time;
private Button edit;
private Button ok;

public MyViewHolder(View view) {
super(view);

ok = (Button) view.findViewById(R.id.daily_ok);
edit = (Button) view.findViewById(R.id.daily_edit);
btn = (Button) view.findViewById(R.id.daily_button);
subject = (TextView) view.findViewById(R.id.daily_subject);
time = (TextView) view.findViewById(R.id.daily_time);


}

}

public MyAdapter(Context mContext, List<Card> cardList) {
this.mContext = mContext;
this.cardList = cardList;
}

@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.dailycard, parent, false);

return new MyViewHolder(itemView);

}

@Override
public void onBindViewHolder(final MyViewHolder holder, int position) {
Card card = cardList.get(position);
holder.subject.setText(card.getName());




}


@Override
public int getItemCount() {



return cardList.size();
}




}

modernserver
دوشنبه 22 آذر 1395, 19:23 عصر
مشکل اینجاست که ریسایکلر ویوو رو در جای نا مناسبی مقدار دهی کردین . توی متد onViewCreated این کد رو بزنید recyclerView = (Recycler View) view.findviewbyid(R.id.recycler_view); a و کلا کدهایی که توی متد oncreate نوشتین رو منتقل کنید به متد onViewCreated انشالا که مشکل حل بشه.

وقتی توی متد OnCreateView خط زیر رو اضافه کنم به view ارور میده
recyclerView = (RecyclerView) view.findViewById(R.id.recycler_view);

وقتی کل کدهارو تو متد onViewCreted بزارم فورس کلوز میده

و وقتی که کدهارو توی OnCreateView بزارم و فقط خط بالا رو توی onViewCreted بزارمم همون ارور رو میده !!!

armankh2015
دوشنبه 22 آذر 1395, 20:59 عصر
این کد رو تست کنید فکر کنم کار کنه :


public class FrMission extends Fragment{



private database db;

private Context mycontext;



private Button btn;

private TextView subject;

private TextView time;

private Button edit;

private Button ok;

private int count;



private RecyclerView recyclerView;

private MyAdapter adapter;

private List<Card> CardList;















public FrMission() {

// Required empty public constructor

}



@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

}



@Override

public View onCreateView(LayoutInflater inflater, ViewGroup container,

Bundle savedInstanceState) {
View rootview = inflater.inflate(R.layout.fr_mission,container,fal se);
return rootview;

}



public void onViewCreated(View view, Bundle savedInstanceState){

super.onViewCreated(view, savedInstanceState);

recyclerView = (Recycler View) view.findviewbyid(R.id.recycler_view);

try {



db = new database(getActivity());

adapter = new MyAdapter(getActivity(), CardList);







RecyclerView.LayoutManager mlayout =new LinearLayoutManager(getContext());



recyclerView.setLayoutManager(mlayout);

recyclerView.setAdapter(adapter);



//Card a = new Card("name");

// CardList.add(a);

}
catch (Exception e)
{
Toast.makeText(getActivity(),e.getMessage(),Toast. LENGTH_LONG).show();
}







}



}

armankh2015
دوشنبه 22 آذر 1395, 21:01 عصر
در ضمن کلاس onViewcreated باید @Override رو هم داشته باشه که تو پست قبل فراموش کردم بزارم

modernserver
سه شنبه 23 آذر 1395, 11:54 صبح
در ضمن کلاس onViewcreated باید @Override رو هم داشته باشه که تو پست قبل فراموش کردم بزارم

قبل از اجرا فورس کلوز میده



12-13 12:21:54.019 573-699/? E/WifiStateMachine: WifiStateMachine CMD_START_SCAN source -2 txSuccessRate=0.00 rxSuccessRate=0.00 targetRoamBSSID=b8:a3:86:3f:66:23 RSSI=-30
12-13 12:21:54.019 573-699/? E/WifiStateMachine: WifiStateMachine starting scan for "High Security"WPA_PSK with 2412
12-13 12:22:09.259 16181-16187/? E/art: No implementation found for java.lang.String android.os.SystemProperties.native_get(java.lang.S tring, java.lang.String) (tried Java_android_os_SystemProperties_native_1get and Java_android_os_SystemProperties_native_1get__Ljav a_lang_String_2Ljava_lang_String_2)
12-13 12:22:09.289 16181-16181/? E/memtrack: Couldn't load memtrack module (No such file or directory)
12-13 12:22:09.289 16181-16181/? E/android.os.Debug: failed to load memtrack module: -2
12-13 12:22:09.289 16181-16181/? A/art: art/runtime/thread.cc:1113] Throwing new exception 'android.os.Debug' with unexpected pending exception: java.lang.UnsatisfiedLinkError: android.os.Debug
12-13 12:22:09.289 16181-16181/? A/art: art/runtime/thread.cc:1113] (Throwable with empty stack trace)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] Runtime aborting...
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] Aborting thread:
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "main" prio=5 tid=1 Runnable
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x740920e0 self=0xf411c500
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16181 nice=0 cgrp=default sched=0/0 handle=0xf776b160
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=R schedstat=( 240426347 14346227 185 ) utm=17 stm=7 core=1 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xff0ca000-0xff0cc000 stackSize=8MB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes= "abort lock" "mutator lock"(shared held)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00005b13 /system/lib/libbacktrace_libC++‎‎.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+83)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 00002e92 /system/lib/libbacktrace_libC++‎‎.so (Backtrace::Unwind(unsigned int, ucontext*)+34)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #02 pc 003c9de8 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+136)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #03 pc 00392e0d /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+285)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #04 pc 003763d6 /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+646)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #05 pc 0037693e /system/lib/libart.so (art::Runtime::Abort()+126)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #06 pc 000eb284 /system/lib/libart.so (art::LogMessage::~LogMessage()+1668)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #07 pc 00390c80 /system/lib/libart.so (art::Thread::AssertNoPendingExceptionForNewExcept ion(char const*) const+512)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #08 pc 00395696 /system/lib/libart.so (art::Thread::ThrowNewException(art::ThrowLocation const&, char const*, char const*)+38)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #09 pc 00121cb8 /system/lib/libart.so (art::ThrowEarlierClassFailure(art::mirror::Class* )+232)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #10 pc 00137cae /system/lib/libart.so (art::ClassLinker::EnsureResolved(art::Thread*, char const*, art::mirror::Class*)+670)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #11 pc 00139daf /system/lib/libart.so (art::ClassLinker::FindClassInPathClassLoader(art: :ScopedObjectAccessAlreadyRunnable&, art::Thread*, char const*, art::Handle<art::mirror::ClassLoader>)+287)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #12 pc 00343b98 /system/lib/libart.so (art::VMClassLoader_findLoadedClass(_JNIEnv*, _jclass*, _jobject*, _jstring*)+408)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #13 pc 00021546 /system/framework/x86/boot.oat (Java_java_lang_VMClassLoader_findLoadedClass__Lja va_lang_ClassLoader_2Ljava_lang_String_2+174)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.VMClassLoader.findLoadedClass!(Native method)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ClassLoader.findLoadedClass(ClassLoader. java:362)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ClassLoader.loadClass(ClassLoader.java:4 99)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ClassLoader.loadClass(ClassLoader.java:4 69)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] Pending exception java.lang.UnsatisfiedLinkError thrown by 'unknown throw location'
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] java.lang.UnsatisfiedLinkError: android.os.Debug
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] (Throwable with empty stack trace)Dumping all threads without appropriate locks held: thread list lock
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] All threads:
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] DALVIK THREADS (11):
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "main" prio=5 tid=1 Runnable
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x740920e0 self=0xf411c500
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16181 nice=0 cgrp=default sched=0/0 handle=0xf776b160
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=R schedstat=( 244465392 14464718 193 ) utm=17 stm=7 core=0 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xff0ca000-0xff0cc000 stackSize=8MB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes= "abort lock" "mutator lock"(shared held)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00005b13 /system/lib/libbacktrace_libC++‎‎.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+83)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 00002e92 /system/lib/libbacktrace_libC++‎‎.so (Backtrace::Unwind(unsigned int, ucontext*)+34)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #02 pc 003c9de8 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+136)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #03 pc 00392e0d /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+285)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #04 pc 0039e8fe /system/lib/libart.so (art::ThreadList::DumpLocked(std::__1::basic_ostre am<char, std::__1::char_traits<char> >&)+478)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #05 pc 00376350 /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+512)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #06 pc 0037693e /system/lib/libart.so (art::Runtime::Abort()+126)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #07 pc 000eb284 /system/lib/libart.so (art::LogMessage::~LogMessage()+1668)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #08 pc 00390c80 /system/lib/libart.so (art::Thread::AssertNoPendingExceptionForNewExcept ion(char const*) const+512)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #09 pc 00395696 /system/lib/libart.so (art::Thread::ThrowNewException(art::ThrowLocation const&, char const*, char const*)+38)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #10 pc 00121cb8 /system/lib/libart.so (art::ThrowEarlierClassFailure(art::mirror::Class* )+232)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #11 pc 00137cae /system/lib/libart.so (art::ClassLinker::EnsureResolved(art::Thread*, char const*, art::mirror::Class*)+670)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #12 pc 00139daf /system/lib/libart.so (art::ClassLinker::FindClassInPathClassLoader(art: :ScopedObjectAccessAlreadyRunnable&, art::Thread*, char const*, art::Handle<art::mirror::ClassLoader>)+287)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #13 pc 00343b98 /system/lib/libart.so (art::VMClassLoader_findLoadedClass(_JNIEnv*, _jclass*, _jobject*, _jstring*)+408)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #14 pc 00021546 /system/framework/x86/boot.oat (Java_java_lang_VMClassLoader_findLoadedClass__Lja va_lang_ClassLoader_2Ljava_lang_String_2+174)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.VMClassLoader.findLoadedClass!(Native method)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ClassLoader.findLoadedClass(ClassLoader. java:362)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ClassLoader.loadClass(ClassLoader.java:4 99)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ClassLoader.loadClass(ClassLoader.java:4 69)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "Heap thread pool worker thread 0" prio=5 tid=2 Native (still starting up)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x0 self=0xf2305100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16183 nice=0 cgrp=default sched=0/0 handle=0xf4156300
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 885597 115389 7 ) utm=0 stm=0 core=0 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf25d4000-0xf25d6000 stackSize=1020KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 000fdc97 /dev/ashmem/dalvik-Heap thread pool worker thread 0 (deleted) (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] (no managed stack frames)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "Heap thread pool worker thread 2" prio=5 tid=3 Native (still starting up)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x0 self=0xf0d05100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16185 nice=0 cgrp=default sched=0/0 handle=0xf4156d00
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 873587 760025 3 ) utm=0 stm=0 core=0 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf0e6d000-0xf0e6f000 stackSize=1020KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 000fdc97 /dev/ashmem/dalvik-Heap thread pool worker thread 2 (deleted) (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] (no managed stack frames)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "Heap thread pool worker thread 1" prio=5 tid=4 Native (still starting up)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x0 self=0xf0c05100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16184 nice=0 cgrp=default sched=0/0 handle=0xf4156a80
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 854673 598769 7 ) utm=0 stm=0 core=0 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf24d2000-0xf24d4000 stackSize=1020KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 000fdc97 /dev/ashmem/dalvik-Heap thread pool worker thread 1 (deleted) (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] (no managed stack frames)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "Signal Catcher" prio=5 tid=5 WaitingInMainSignalCatcherLoop
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x7409b080 self=0xf0b05100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16186 nice=0 cgrp=default sched=0/0 handle=0xf4156f80
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 845500 526723 3 ) utm=0 stm=0 core=0 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf2200000-0xf2202000 stackSize=1012KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=

modernserver
سه شنبه 23 آذر 1395, 11:55 صبح
اینم ادامش



12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_sigtimedwait+0x157/0x200
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: C_SYSC_rt_sigtimedwait+0xa6/0x100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_rt_sigtimedwait+0xe/0x10
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 00000000f76cdc6b
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 00000000f3f6c29b
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 00000000f767807a
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00085c6b /system/lib/libc.so (__rt_sigtimedwait+27)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 000332ff /system/lib/libc.so (sigwait+79)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #02 pc 0037e681 /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+129)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #03 pc 0037f29a /system/lib/libart.so (art::SignalCatcher::Run(void*)+314)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #04 pc 00030079 /system/lib/libc.so (__pthread_start(void*)+57)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #05 pc 0002b3ca /system/lib/libc.so (__start_thread+26)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #06 pc 00012c46 /system/lib/libc.so (__bionic_clone+70)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] (no managed stack frames)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "JDWP" prio=5 tid=6 WaitingInMainDebuggerLoop
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x7409f080 self=0xf0905100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16187 nice=0 cgrp=default sched=0/0 handle=0xf4157200
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 7753604 6230796 95 ) utm=0 stm=0 core=1 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf0a04000-0xf0a06000 stackSize=1012KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: poll_schedule_timeout+0x61/0xd0
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_select+0x552/0x680
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_core_sys_select+0x1da/0x2a0
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_sys_pselect6+0x239/0x250
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00084c15 /system/lib/libc.so (__pselect6+37)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 0002ebd3 /system/lib/libc.so (select+179)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #02 pc 0043a637 /system/lib/libart.so (art::JDWP::JdwpAdbState::ProcessIncoming()+343)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #03 pc 0028bbf7 /system/lib/libart.so (art::JDWP::JdwpState::Run()+423)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #04 pc 0028dce1 /system/lib/libart.so (art::JDWP::StartJdwpThread(void*)+33)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #05 pc 00030079 /system/lib/libc.so (__pthread_start(void*)+57)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #06 pc 0002b3ca /system/lib/libc.so (__start_thread+26)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #07 pc 00012c46 /system/lib/libc.so (__bionic_clone+70)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] (no managed stack frames)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "ReferenceQueueDaemon" prio=5 tid=7 Waiting
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x74092140 self=0xf411ca00
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16188 nice=0 cgrp=default sched=0/0 handle=0xf4157480
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 1003199 93903 5 ) utm=0 stm=0 core=1 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf07fe000-0xf0800000 stackSize=1036KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 001018f7 [stack:16188] (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Object.wait!(Native method)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - waiting on <0x2e31dc5b> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons .java:133)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - locked <0x2e31dc5b> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Thread.run(Thread.java:818)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "FinalizerDaemon" prio=5 tid=8 Waiting
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x74092200 self=0xf411cf00
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16189 nice=0 cgrp=default sched=0/0 handle=0xf4157700
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 804116 0 3 ) utm=0 stm=0 core=1 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf04fe000-0xf0500000 stackSize=1036KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 00101817 [stack:16189] (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Object.wait!(Native method)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - waiting on <0x25c0bcf8> (a java.lang.ref.ReferenceQueue)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Object.wait(Object.java:422)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue .java:101)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - locked <0x25c0bcf8> (a java.lang.ref.ReferenceQueue)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue .java:72)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java :173)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Thread.run(Thread.java:818)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "FinalizerWatchdogDaemon" prio=5 tid=9 Waiting
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x74092260 self=0xf411d400
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16190 nice=0 cgrp=default sched=0/0 handle=0xf4157980
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 837878 0 2 ) utm=0 stm=0 core=1 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xf01fe000-0xf0200000 stackSize=1036KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 001018c7 [stack:16190] (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Object.wait!(Native method)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - waiting on <0x2c7435d1> (a java.lang.Daemons$FinalizerWatchdogDaemon)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForO bject(Daemons.java:239)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - locked <0x2c7435d1> (a java.lang.Daemons$FinalizerWatchdogDaemon)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daem ons.java:211)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Thread.run(Thread.java:818)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "HeapTrimmerDaemon" prio=5 tid=10 Waiting
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x740922c0 self=0xf411d900
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16191 nice=0 cgrp=default sched=0/0 handle=0xf4157c00
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 762791 0 2 ) utm=0 stm=0 core=1 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xefefe000-0xeff00000 stackSize=1036KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 00101907 [stack:16191] (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Object.wait!(Native method)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - waiting on <0x0686c836> (a java.lang.Daemons$HeapTrimmerDaemon)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Daemons$HeapTrimmerDaemon.run(Daemons.ja va:310)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - locked <0x0686c836> (a java.lang.Daemons$HeapTrimmerDaemon)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Thread.run(Thread.java:818)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] "GCDaemon" prio=5 tid=11 Waiting
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | group="" sCount=0 dsCount=0 obj=0x74092320 self=0xf411de00
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | sysTid=16192 nice=0 cgrp=default sched=0/0 handle=0xf4157e80
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | state=S schedstat=( 1126271 273401 14 ) utm=0 stm=0 core=1 HZ=100
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | stack=0xefbfe000-0xefc00000 stackSize=1036KB
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] | held mutexes=
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait_queue_me+0xe0/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: futex_wait+0x182/0x290
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: do_futex+0xde/0x610
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: compat_SyS_futex+0x72/0x150
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: ia32_sysret+0x0/0x5
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: 0xffffffffffffffff
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] kernel: userspace
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #00 pc 00012e00 /system/lib/libc.so (syscall+32)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] native: #01 pc 00101907 [stack:16192] (???)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Object.wait!(Native method)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - waiting on <0x2827e337> (a java.lang.Daemons$GCDaemon)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Daemons$GCDaemon.run(Daemons.java:341)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] - locked <0x2827e337> (a java.lang.Daemons$GCDaemon)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285] at java.lang.Thread.run(Thread.java:818)
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/art: art/runtime/runtime.cc:285]
12-13 12:22:09.349 16181-16181/? A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 16181 (main)
12-13 12:22:09.459 266-266/? E/DEBUG: AM write failure (32 / Broken pipe)
12-13 12:22:09.529 573-1987/? E/SharedPreferencesImpl: Couldn't create directory for SharedPreferences file shared_prefs/log_files.xml
12-13 12:22:10.089 16202-16202/? E/memtrack: Couldn't load memtrack module (No such file or directory)
12-13 12:22:10.089 16202-16202/? E/android.os.Debug: failed to load memtrack module: -2
12-13 12:22:13.539 16219-16219/? E/memtrack: Couldn't load memtrack module (No such file or directory)
12-13 12:22:13.539 16219-16219/? E/android.os.Debug: failed to load memtrack module: -2
12-13 12:22:14.699 16232-16232/com.sayeben.myapplication E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.sayeben.myapplication, PID: 16232
java.lang.NullPointerException: Attempt to invoke interface method 'int java.util.List.size()' on a null object reference
at com.sayeben.myapplication.MyAdapter.getItemCount(M yAdapter.java:76)
at android.support.v7.widget.RecyclerView.dispatchLay outStep1(RecyclerView.java:3225)
at android.support.v7.widget.RecyclerView.onMeasure(R ecyclerView.java:2837)
at android.view.View.measure(View.java:17442)
at android.view.ViewGroup.measureChildWithMargins(Vie wGroup.java:5463)
at android.widget.FrameLayout.onMeasure(FrameLayout.j ava:430)
at android.view.View.measure(View.java:17442)
at android.support.v4.view.ViewPager.onMeasure(ViewPa ger.java:1630)
at android.view.View.measure(View.java:17442)
at android.view.ViewGroup.measureChildWithMargins(Vie wGroup.java:5463)
at android.support.design.widget.CoordinatorLayout.on MeasureChild(CoordinatorLayout.java:700)
at android.support.design.widget.HeaderScrollingViewB ehavior.onMeasureChild(HeaderScrollingViewBehavior .java:90)
at android.support.design.widget.AppBarLayout$Scrolli ngViewBehavior.onMeasureChild(AppBarLayout.java:13 64)
at android.support.design.widget.CoordinatorLayout.on Measure(CoordinatorLayout.java:765)
at android.view.View.measure(View.java:17442)
at android.view.ViewGroup.measureChildWithMargins(Vie wGroup.java:5463)
at android.widget.FrameLayout.onMeasure(FrameLayout.j ava:430)
at android.support.v7.widget.ContentFrameLayout.onMea sure(ContentFrameLayout.java:135)
at android.view.View.measure(View.java:17442)
at android.view.ViewGroup.measureChildWithMargins(Vie wGroup.java:5463)
at android.widget.LinearLayout.measureChildBeforeLayo ut(LinearLayout.java:1436)
at android.widget.LinearLayout.measureVertical(Linear Layout.java:722)
at android.widget.LinearLayout.onMeasure(LinearLayout .java:613)
at android.view.View.measure(View.java:17442)
at android.view.ViewGroup.measureChildWithMargins(Vie wGroup.java:5463)
at android.widget.FrameLayout.onMeasure(FrameLayout.j ava:430)
at android.view.View.measure(View.java:17442)
at android.view.ViewGroup.measureChildWithMargins(Vie wGroup.java:5463)
at android.widget.LinearLayout.measureChildBeforeLayo ut(LinearLayout.java:1436)
at android.widget.LinearLayout.measureVertical(Linear Layout.java:722)
at android.widget.LinearLayout.onMeasure(LinearLayout .java:613)
at android.view.View.measure(View.java:17442)
at android.view.ViewGroup.measureChildWithMargins(Vie wGroup.java:5463)
at android.widget.FrameLayout.onMeasure(FrameLayout.j ava:430)
at com.android.internal.policy.impl.PhoneWindow$Decor View.onMeasure(PhoneWindow.java:2560)
at android.view.View.measure(View.java:17442)
at android.view.ViewRootImpl.performMeasure(ViewRootI mpl.java:2008)
at android.view.ViewRootImpl.measureHierarchy(ViewRoo tImpl.java:1172)
at android.view.ViewRootImpl.performTraversals(ViewRo otImpl.java:1379)
at android.view.ViewRootImpl.doTraversal(ViewRootImpl .java:1060)
at android.view.ViewRootImpl$TraversalRunnable.run(Vi ewRootImpl.java:5793)
at android.view.Choreographer$CallbackRecord.run(Chor eographer.java:767)
at android.view.Choreographer.doCallbacks(Choreograph er.java:580)
at android.view.Choreographer.doFrame(Choreographer.j ava:550)
at android.view.Choreographer$FrameDisplayEventReceiv er.run(Choreographer.java:753)
at android.os.Handler.handleCallback(Handler.java:739 )
at android.os.Handler.dispatchMessage(Handler.java:95 )
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.jav a:5264)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCa ller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit .java:694)
12-13 12:22:14.999 573-983/? E/ActivityManager: Invalid thumbnail dimensions: 479x479
12-13 12:22:15.149 20364-16281/? E/DropboxRealtime: null InputStream
java.io.IOException: null InputStream
at xjr.a(:com.google.android.gms:187)
at xjr.b(:com.google.android.gms:131)
at xiw.a(:com.google.android.gms:88)
at com.google.android.gms.stats.service.DropBoxEntryA ddedChimeraService.onHandleIntent(:com.google.andr oid.gms:1180)
at bhe.handleMessage(:com.google.android.gms:65)
at android.os.Handler.dispatchMessage(Handler.java:10 2)
at android.os.Looper.loop(Looper.java:135)
at android.os.HandlerThread.run(HandlerThread.java:61 )
12-13 12:22:15.599 573-699/? E/WifiStateMachine: WifiStateMachine CMD_START_SCAN source -2 txSuccessRate=0.00 rxSuccessRate=0.00 targetRoamBSSID=b8:a3:86:3f:66:23 RSSI=-28
12-13 12:22:15.599 573-699/? E/WifiStateMachine: WifiStateMachine starting scan for "High Security"WPA_PSK with 2412