• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. P

    Apps How to get the Id of selected database records in spinner

    Hi. I am using spinner where it displayes the names of students. There is table studentrecords which stores Student Id, FirstName, LastName and class. The requirement is that when I select the student name, then its Id, FirstName,LastName, Class should be displayed on text box. I have the below...
  2. P

    Spinner not getting populated with database records in android

    Hi. I am using Yii2 REST API. I have a table called studentrecords consisting of Id,FirstName,LastName, Class fields. I have a API which returns the json array containing stiudent FirstName and LastName. API is working fine. Now I have a android code where I use a spinner to display student...
  3. P

    How to populate database records in spinner

    I am using web service. I have a student application. The API returns JSON array containing student Id, FirstName, LastName and Class. In Update section I want that In spinner Students FirstName and LastName must be displayed. When the user selects any student then user should be able to update...
  4. P

    Server Error Occured in Android App

    I have a android app that takes the values from user for student, such as FirstName, LastName and Class. When the user inputs the values and clicks on button, it calls the API and stores the values into database. I am using Yii framework and REST API. Here when I run, there is error as...
  5. P

    Error occured on Android app

    I have the below code which returns the FirstName, LastName and Class of student stored in database in json format. But when I run the app, data is not displayed ~~~~ package com.example.anitaa.student; import android.app.DownloadManager; import android.support.v7.app.AppCompatActivity; import...
  6. P

    Android app not displaying string in Yii 2 framework

    package com.example.anitaa.student; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import com.android.volley.Request; import com.android.volley.RequestQueue; import...