Click here to Skip to main content
15,914,943 members
Home / Discussions / Android
   

Android

 
GeneralRe: Investigate Which App controls Infrared???? Pin
Member 127177613-Sep-16 8:51
Member 127177613-Sep-16 8:51 
GeneralRe: Investigate Which App controls Infrared???? Pin
Richard MacCutchan3-Sep-16 20:40
mveRichard MacCutchan3-Sep-16 20:40 
GeneralRe: Investigate Which App controls Infrared???? Pin
Member 1235809720-Sep-16 23:52
Member 1235809720-Sep-16 23:52 
GeneralRe: Investigate Which App controls Infrared???? Pin
Richard MacCutchan21-Sep-16 1:59
mveRichard MacCutchan21-Sep-16 1:59 
GeneralI need some intermediate/advance android books to futhur increase my knowledge? Pin
Member 118283651-Sep-16 19:43
Member 118283651-Sep-16 19:43 
GeneralRe: I need some intermediate/advance android books to futhur increase my knowledge? Pin
Richard MacCutchan1-Sep-16 21:10
mveRichard MacCutchan1-Sep-16 21:10 
SuggestionRe: I need some intermediate/advance android books to futhur increase my knowledge? Pin
David Crow2-Sep-16 16:09
David Crow2-Sep-16 16:09 
QuestionRealize multipage app Pin
Andy_Bell1-Sep-16 12:14
Andy_Bell1-Sep-16 12:14 
AnswerRe: Realize multipage app Pin
Afzaal Ahmad Zeeshan4-Sep-16 0:43
professionalAfzaal Ahmad Zeeshan4-Sep-16 0:43 
QuestionWant to keep bluetooth device connection in entire application. Bluetooth connection is lost while switch to another activity ... ? Pin
utkarsh.incarnate26-Aug-16 19:48
utkarsh.incarnate26-Aug-16 19:48 
QuestionRe: Want to keep bluetooth device connection in entire application. Bluetooth connection is lost while switch to another activity ... ? Pin
Richard MacCutchan26-Aug-16 21:04
mveRichard MacCutchan26-Aug-16 21:04 
AnswerRe: Want to keep bluetooth device connection in entire application. Bluetooth connection is lost while switch to another activity ... ? Pin
Member 1016528829-Aug-16 12:53
Member 1016528829-Aug-16 12:53 
QuestionRe: Want to keep bluetooth device connection in entire application. Bluetooth connection is lost while switch to another activity ... ? Pin
David Crow29-Aug-16 16:36
David Crow29-Aug-16 16:36 
GeneralRe: Want to keep bluetooth device connection in entire application. Bluetooth connection is lost while switch to another activity ... ? Pin
Utkarsh Joshi 13-Sep-16 21:09
Utkarsh Joshi 13-Sep-16 21:09 
AnswerRe: Want to keep bluetooth device connection in entire application. Bluetooth connection is lost while switch to another activity ... ? Pin
Utkarsh Joshi 13-Sep-16 20:59
Utkarsh Joshi 13-Sep-16 20:59 
QuestionProblem with custom row in List View Pin
Andy_Bell26-Aug-16 9:38
Andy_Bell26-Aug-16 9:38 
QuestionRe: Problem with custom row in List View Pin
David Crow26-Aug-16 10:02
David Crow26-Aug-16 10:02 
AnswerRe: Problem with custom row in List View Pin
Andy_Bell26-Aug-16 10:50
Andy_Bell26-Aug-16 10:50 
SuggestionRe: Problem with custom row in List View Pin
David Crow26-Aug-16 15:29
David Crow26-Aug-16 15:29 
QuestionHow download picture Pin
Andy_Bell25-Aug-16 12:21
Andy_Bell25-Aug-16 12:21 
Good evening.

I try to download picture form url and insert in Image View. I use this code to do it:

public Bitmap getBitmapFromURL(String src) {
        Bitmap myBitmap = null;
        try {
            java.net.URL url = new java.net.URL(src);
            HttpURLConnection connection =    (HttpURLConnection) url
                    .openConnection();
            connection.setDoInput(true);
            connection.connect();
            InputStream input = connection.getInputStream();
            myBitmap = BitmapFactory.decodeStream(input);
            return myBitmap;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }
    }


I just want to ask you, there is problem to do so, or is it inefficient?
Closing this application, remains the downloaded picture remains in memory?
If I want to free memory resource, how can I cancel this files (accumulated in time)?
AnswerRe: How download picture Pin
Richard MacCutchan25-Aug-16 20:45
mveRichard MacCutchan25-Aug-16 20:45 
GeneralRe: How download picture Pin
Andy_Bell25-Aug-16 23:25
Andy_Bell25-Aug-16 23:25 
GeneralRe: How download picture Pin
Richard MacCutchan26-Aug-16 0:02
mveRichard MacCutchan26-Aug-16 0:02 
GeneralRe: How download picture Pin
Andy_Bell26-Aug-16 3:35
Andy_Bell26-Aug-16 3:35 
GeneralRe: How download picture Pin
Richard MacCutchan26-Aug-16 3:45
mveRichard MacCutchan26-Aug-16 3:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.