Input dispatching timed out CursorStrange out of memory issue while loading an image to a Bitmap objectHow to check internet access on Android? InetAddress never times outGet current time and date on AndroidPlace cursor at the end of text in EditTextSet EditText cursor colorANR Input dispatching timed out (Waiting because no window has focus but there is a focused application that may eventually)What could be reason for - ANR :Input dispatching timed outcontentResolver can't allocate enough space to large number of filesAndroid ANR - Input dispatching timed outHow to detect mulitple ANR's of the same app in /data/anr/traces.txt?

Why do Martians have to wear space helmets?

Why is there paternal, for fatherly, fraternal, for brotherly, but no similar word for sons?

What was the significance of Spider-Man: Far From Home being an MCU Phase 3 film instead of a Phase 4 film?

Can one block with a protection from color creature?

Why no parachutes in the Orion AA2 abort test?

Can the Four Elements monk's Shape the Flowing River elemental discipline create stairs by expending a single ki point?

Where are the Wazirs?

Custom Geolocation Fields not populating in test class

Why do people prefer metropolitan areas, considering monsters and villains?

Who goes first? Person disembarking bus or the bicycle?

Can you create a free-floating MASYU puzzle?

How do resistors generate different heat if we make the current fixed and changed the voltage and resistance? Notice the flow of charge is constant

Is conquering your neighbors to fight a greater enemy a valid strategy?

Ways to demonstrate ("show-off") contributions as an undergraduate in research

Quotients of a ring of integers

Gory anime with pink haired girl escaping an asylum

How should I ask for a "pint" in countries that use metric?

In layman's terms, does the Luckstone just give a passive +1 to all d20 rolls and saves except for death saves?

My professor has told me he will be the corresponding author. Will it hurt my future career?

Is this car delivery via Ebay Motors on Craigslist a scam?

What does the multimeter dial do internally?

Is "stock progression" the common way to write about a set chord progression?

Taking my Ph.D. advisor out for dinner after graduation

Why did the frequency of the word "черт" (devil) in books increase by a few times since the October Revolution?



Input dispatching timed out Cursor


Strange out of memory issue while loading an image to a Bitmap objectHow to check internet access on Android? InetAddress never times outGet current time and date on AndroidPlace cursor at the end of text in EditTextSet EditText cursor colorANR Input dispatching timed out (Waiting because no window has focus but there is a focused application that may eventually)What could be reason for - ANR :Input dispatching timed outcontentResolver can't allocate enough space to large number of filesAndroid ANR - Input dispatching timed outHow to detect mulitple ANR's of the same app in /data/anr/traces.txt?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have a music player app that's getting the following error



 Input dispatching timed out (Waiting because no window has focus but there is 
a focused application that may eventually add a window when it finishes starting up.)

The error is generated by this line of code

cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder);


Here's the complete code



 Cursor cursor;
ArrayList<Song> songList = new ArrayList<Song>();
ContentResolver musicResolver = getActivity().getContentResolver();

Uri allSongsUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
final String[] projection = MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA, MediaStore.Audio.Media.DURATION,
MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ALBUM, MediaStore.Audio.Media.ARTIST, MediaStore.Audio.Media.ALBUM_ID;
cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder); //this is the line that generates the error.


I can't replicate the error on my Android phone, I got the error from the ANRs & crashes.










share|improve this question






















  • may be its taking long time to fetch all songs. try to use AsyncTask method . You may reproduce the error by having large media files library

    – Sahdeep Singh
    Mar 26 at 7:34


















0















I have a music player app that's getting the following error



 Input dispatching timed out (Waiting because no window has focus but there is 
a focused application that may eventually add a window when it finishes starting up.)

The error is generated by this line of code

cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder);


Here's the complete code



 Cursor cursor;
ArrayList<Song> songList = new ArrayList<Song>();
ContentResolver musicResolver = getActivity().getContentResolver();

Uri allSongsUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
final String[] projection = MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA, MediaStore.Audio.Media.DURATION,
MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ALBUM, MediaStore.Audio.Media.ARTIST, MediaStore.Audio.Media.ALBUM_ID;
cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder); //this is the line that generates the error.


I can't replicate the error on my Android phone, I got the error from the ANRs & crashes.










share|improve this question






















  • may be its taking long time to fetch all songs. try to use AsyncTask method . You may reproduce the error by having large media files library

    – Sahdeep Singh
    Mar 26 at 7:34














0












0








0








I have a music player app that's getting the following error



 Input dispatching timed out (Waiting because no window has focus but there is 
a focused application that may eventually add a window when it finishes starting up.)

The error is generated by this line of code

cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder);


Here's the complete code



 Cursor cursor;
ArrayList<Song> songList = new ArrayList<Song>();
ContentResolver musicResolver = getActivity().getContentResolver();

Uri allSongsUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
final String[] projection = MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA, MediaStore.Audio.Media.DURATION,
MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ALBUM, MediaStore.Audio.Media.ARTIST, MediaStore.Audio.Media.ALBUM_ID;
cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder); //this is the line that generates the error.


I can't replicate the error on my Android phone, I got the error from the ANRs & crashes.










share|improve this question














I have a music player app that's getting the following error



 Input dispatching timed out (Waiting because no window has focus but there is 
a focused application that may eventually add a window when it finishes starting up.)

The error is generated by this line of code

cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder);


Here's the complete code



 Cursor cursor;
ArrayList<Song> songList = new ArrayList<Song>();
ContentResolver musicResolver = getActivity().getContentResolver();

Uri allSongsUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
final String[] projection = MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA, MediaStore.Audio.Media.DURATION,
MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ALBUM, MediaStore.Audio.Media.ARTIST, MediaStore.Audio.Media.ALBUM_ID;
cursor = musicResolver.query(allSongsUri, projection, null, null, sortingOption+" "+sortingOrder); //this is the line that generates the error.


I can't replicate the error on my Android phone, I got the error from the ANRs & crashes.







android android-mediaplayer android-cursor android-contentresolver






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 25 at 21:08









JuliaJulia

3292 gold badges8 silver badges26 bronze badges




3292 gold badges8 silver badges26 bronze badges












  • may be its taking long time to fetch all songs. try to use AsyncTask method . You may reproduce the error by having large media files library

    – Sahdeep Singh
    Mar 26 at 7:34


















  • may be its taking long time to fetch all songs. try to use AsyncTask method . You may reproduce the error by having large media files library

    – Sahdeep Singh
    Mar 26 at 7:34

















may be its taking long time to fetch all songs. try to use AsyncTask method . You may reproduce the error by having large media files library

– Sahdeep Singh
Mar 26 at 7:34






may be its taking long time to fetch all songs. try to use AsyncTask method . You may reproduce the error by having large media files library

– Sahdeep Singh
Mar 26 at 7:34













0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346433%2finput-dispatching-timed-out-cursor%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346433%2finput-dispatching-timed-out-cursor%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript