Click here to Skip to main content
15,885,116 members
Home / Discussions / Android
   

Android

 
GeneralRe: Hiring Programmer for Android apps. Pin
User 149000168-Sep-20 15:23
User 149000168-Sep-20 15:23 
GeneralRe: Hiring Programmer for Android apps. Pin
Richard MacCutchan8-Sep-20 21:36
mveRichard MacCutchan8-Sep-20 21:36 
GeneralRe: Hiring Programmer for Android apps. Pin
User 1490001610-Sep-20 8:18
User 1490001610-Sep-20 8:18 
GeneralRe: Hiring Programmer for Android apps. Pin
Richard MacCutchan10-Sep-20 9:19
mveRichard MacCutchan10-Sep-20 9:19 
GeneralRe: Hiring Programmer for Android apps. Pin
klindouchous30-Dec-20 7:14
klindouchous30-Dec-20 7:14 
GeneralRe: Hiring Programmer for Android apps. Pin
thinkstartpl27-Apr-21 2:50
professionalthinkstartpl27-Apr-21 2:50 
AnswerRe: The popular and free movie viewing app for android? Pin
Richard MacCutchan8-Aug-20 23:06
mveRichard MacCutchan8-Aug-20 23:06 
QuestionXamarin Forms App Calling Web API Pin Pin
Kevin Marois20-Jul-20 7:26
professionalKevin Marois20-Jul-20 7:26 
'm learning Xamaring Forms. I want to test connecting to a Web API. I have a an Asp.Net Framework Web API running and I can connect to to it.
However, in my Xamarin Forms page, when I call it, the call to GetAsync never returns:
public class MainPageViewModel : _ViewModelBase
{
    private string url = "<a href="https://localhost:44340/api/Test/GetAll"><a href="https://localhost:44340/api/Test/GetAll">https://localhost:44340/api/Test/GetAll</a></a>";
    public List<TestDataEntity> Items { get; set; }
    public MainPageViewModel()
    {
        GetData();
    }
    private async Task GetData()
    {
        try
        {
            HttpClient client = new HttpClient();
            HttpResponseMessage response = await client.GetAsync(url);  // <====== NEVER RETURNS

            if (response.IsSuccessStatusCode)
            {
                string content = await response.Content.ReadAsStringAsync();
                Items = JsonConvert.DeserializeObject<List<TestDataEntity>>(content);
            }
        }
        catch (Exception e)
        {
            throw;
        }
    }
}
I can paste the URL into a browser and see the JSON results. If the WebAPI is NOT running the GetAsync throws.

Anyone have any thoughts on this?
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: Xamarin Forms App Calling Web API Pin Pin
Richard Deeming20-Jul-20 21:38
mveRichard Deeming20-Jul-20 21:38 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Kevin Marois21-Jul-20 6:22
professionalKevin Marois21-Jul-20 6:22 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Richard Deeming21-Jul-20 6:56
mveRichard Deeming21-Jul-20 6:56 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Kevin Marois21-Jul-20 6:58
professionalKevin Marois21-Jul-20 6:58 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Richard Deeming21-Jul-20 23:17
mveRichard Deeming21-Jul-20 23:17 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Kevin Marois22-Jul-20 6:45
professionalKevin Marois22-Jul-20 6:45 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Richard Deeming22-Jul-20 7:30
mveRichard Deeming22-Jul-20 7:30 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Kevin Marois22-Jul-20 7:36
professionalKevin Marois22-Jul-20 7:36 
GeneralRe: Xamarin Forms App Calling Web API Pin Pin
Richard Deeming22-Jul-20 22:09
mveRichard Deeming22-Jul-20 22:09 
Questionandroid studio Pin
Member 1488720211-Jul-20 20:30
Member 1488720211-Jul-20 20:30 
QuestionRe: android studio Pin
Richard MacCutchan11-Jul-20 23:05
mveRichard MacCutchan11-Jul-20 23:05 
AnswerRe: android studio Pin
Richard Andrew x6420-Jul-20 9:50
professionalRichard Andrew x6420-Jul-20 9:50 
GeneralRe: android studio Pin
Richard MacCutchan20-Jul-20 10:03
mveRichard MacCutchan20-Jul-20 10:03 
QuestionFile and App sharing app Pin
AdityaSha8-Jul-20 17:00
AdityaSha8-Jul-20 17:00 
AnswerRe: File and App sharing app Pin
Richard MacCutchan8-Jul-20 22:49
mveRichard MacCutchan8-Jul-20 22:49 
GeneralRe: File and App sharing app Pin
AdityaSha10-Jul-20 1:51
AdityaSha10-Jul-20 1:51 
GeneralRe: File and App sharing app Pin
Richard MacCutchan10-Jul-20 3:11
mveRichard MacCutchan10-Jul-20 3:11 

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.