Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • I failed to customize array adapter

    • 0
    • 0
    • 0
    • 1
    • 0
    • 0
    • 0
    • 392
    Answer it

    Problem facing in customization of array adapter

    I am want to

    1) fetch data from a SQL server 2008

    2) display fetched data into a list view.


    After successfully I tried to display data with a listview, I fetched two column data that's why I tryed to customize my array adapter where is the code 

    1. public class testlistviewAdapter extends ArrayAdapter<String> {
    2. public testlistviewAdapter(Context context, String[] foods) {
    3. super(context, R.layout.testlistview,foods);
    4. }
    5.  
    6. @Override
    7. public View getView(int position,View convertView,ViewGroup parent ){
    8. LayoutInflater joyinflater=LayoutInflater.from(getContext());
    9. View customView=joyinflater.inflate(R.layout.listview_adapter_file,parent,false);
    10. String singleFoodItem=getItem(position);
    11. TextView firstrow=(TextView)customView.findViewById(R.id.tx);
    12. TextView secondrow=(TextView)customView.findViewById(R.id.datetime);
    13. firstrow.setText(singleFoodItem);
    14. secondrow.setText(singleFoodItem);
    15. return customView;
    16.  
    17. }
    18. }


    and here is the code from activity part 

 1 Answer(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: