Facebook
From Bistre Elephant, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 275
  1.     public void NowaLista() {
  2.  
  3.  
  4.         for (Object p : Produkty)
  5.         {
  6.             produkty = (TextView) findViewById(R.id.produkty);
  7.              produkty.setText((p.toString()));
  8.  
  9.         }
  10.  
  11.     }
  12.    
  13.    
  14.         @Override
  15.     public String toString()
  16.     {
  17.  
  18.          String ppp = this.nazwa + " " + this.ilosc + " " + this.kalorie + " " + this.bialko + " " + this.wegle + " " + this.tluszcze;
  19.         return ppp;
  20.         }