Click here to Skip to main content
15,790,022 members
Home / Discussions / Android
   

Android

 
GeneralRe: Android Day of Week Calculator Pin
Pavlex49-Feb-17 11:15
Pavlex49-Feb-17 11:15 
SuggestionRe: Android Day of Week Calculator Pin
David Crow9-Feb-17 11:23
David Crow9-Feb-17 11:23 
GeneralRe: Android Day of Week Calculator Pin
Pavlex49-Feb-17 11:32
Pavlex49-Feb-17 11:32 
GeneralRe: Android Day of Week Calculator Pin
David Crow9-Feb-17 11:36
David Crow9-Feb-17 11:36 
GeneralRe: Android Day of Week Calculator Pin
Pavlex49-Feb-17 11:38
Pavlex49-Feb-17 11:38 
GeneralRe: Android Day of Week Calculator Pin
Richard MacCutchan9-Feb-17 22:07
mveRichard MacCutchan9-Feb-17 22:07 
GeneralRe: Android Day of Week Calculator Pin
Pavlex49-Feb-17 22:39
Pavlex49-Feb-17 22:39 
GeneralRe: Android Day of Week Calculator Pin
Richard MacCutchan9-Feb-17 23:20
mveRichard MacCutchan9-Feb-17 23:20 
You really need to make more effort to do some debugging of your code first. You have a problem which could be caused by any part of your code, so you need to do the troubleshooting to collect more information. Also you have a try/catch block in your code that reads:
Java
try
    {
        String getdate = spinner.getItemAtPosition(position).toString() + value
                + textView2.getText().toString();
        Date date = sdf.parse(getdate);
    }
    catch (ParseException ex)
    {

    }

Do not do this, you are just hiding any problems that may occur. Put some proper code in the catch block to help you find errors.
GeneralRe: Android Day of Week Calculator Pin
David Crow10-Feb-17 3:08
David Crow10-Feb-17 3:08 
GeneralRe: Android Day of Week Calculator Pin
Richard MacCutchan10-Feb-17 3:46
mveRichard MacCutchan10-Feb-17 3:46 
GeneralMobile and o/s application development Pin
JimmiJames337-Feb-17 6:42
professionalJimmiJames337-Feb-17 6:42 
QuestionRe: Mobile and o/s application development Pin
David Crow7-Feb-17 7:15
David Crow7-Feb-17 7:15 
QuestionAndroid Popup Window Pin
Pavlex42-Feb-17 9:09
Pavlex42-Feb-17 9:09 
QuestionPermissions Not Persistent During Across App Startups Pin
Django_Untaken1-Feb-17 21:51
Django_Untaken1-Feb-17 21:51 
AnswerRe: Permissions Not Persistent During Across App Startups Pin
Afzaal Ahmad Zeeshan1-Feb-17 23:33
professionalAfzaal Ahmad Zeeshan1-Feb-17 23:33 
GeneralRe: Permissions Not Persistent During Across App Startups Pin
Django_Untaken2-Feb-17 2:06
Django_Untaken2-Feb-17 2:06 
GeneralRe: Permissions Not Persistent During Across App Startups Pin
Afzaal Ahmad Zeeshan2-Feb-17 3:21
professionalAfzaal Ahmad Zeeshan2-Feb-17 3:21 
GeneralRe: Permissions Not Persistent During Across App Startups Pin
Django_Untaken2-Feb-17 3:58
Django_Untaken2-Feb-17 3:58 
GeneralRe: Permissions Not Persistent During Across App Startups Pin
Richard Deeming2-Feb-17 4:46
mveRichard Deeming2-Feb-17 4:46 
QuestionAlarm Manager Pin
Pavlex429-Jan-17 1:40
Pavlex429-Jan-17 1:40 
AnswerRe: Alarm Manager Pin
Richard MacCutchan29-Jan-17 3:01
mveRichard MacCutchan29-Jan-17 3:01 
GeneralRe: Alarm Manager Pin
Pavlex429-Jan-17 3:13
Pavlex429-Jan-17 3:13 
GeneralRe: Alarm Manager Pin
Richard MacCutchan29-Jan-17 3:18
mveRichard MacCutchan29-Jan-17 3:18 
GeneralRe: Alarm Manager Pin
Afzaal Ahmad Zeeshan29-Jan-17 3:22
professionalAfzaal Ahmad Zeeshan29-Jan-17 3:22 
GeneralRe: Alarm Manager Pin
Richard MacCutchan29-Jan-17 3:47
mveRichard MacCutchan29-Jan-17 3:47 

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.