Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~1K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for Karan_8

I am beginner in android programming, I am making a music app the problem I am facing with my app is when my app is minimized and I try to resume the app from the launch icon, splash screen appears for the specified time but after that the android home …

0
130
Member Avatar for WebMedia_1

use this code @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if ((keyCode == KeyEvent.KEYCODE_BACK) && browser.canGoBack()) {// check for browser web page history browser.goBack(); // back history item return true; } return super.onKeyDown(keyCode, event); }

Member Avatar for Karan_8
0
371
Member Avatar for Vansh_2

Not possible to detect internet speed from header. you can use web development language to detect internet speed like PHP, JSP / Servlet, .Net etc....

Member Avatar for Karan_8
0
540
Member Avatar for Alok_5

To delete node from xml use function given below DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); InputSource is = new InputSource(); is.setCharacterStream(new StringReader(xml)); Document doc = db.parse(is); deletePerson(doc, id); public static void deletePerson(Document doc, String id) { // <song> NodeList nodes = doc.getElementsByTagName("song"); for (int i = 0; i …

Member Avatar for Karan_8
0
288

The End.