2011-12-03 136 views
4

我努力做的應用程序有一個簡單的列表和一個按鈕,無論如何存在於底部。我的問題是我的自定義BaseAdapter不顯示元素。我知道,因爲我的元素只是一個字符串,我可以使用ArrayAdapter,但分配需要它。代碼:Android:BaseAdapter不顯示元素

class ListaOrase extends BaseAdapter{ 
    private Activity context; 
    ArrayList<String> orase; 

    public ListaOrase(Activity context){ 
     this.context=context; 
     orase=new ArrayList<String>(); 
    } 
    public void add(String string){ 
     orase.add(string); 
    } 
public int getCount() { 
     // TODO Auto-generated method stub 
     return 0; 
    } 

    public Object getItem(int arg0) { 
     // TODO Auto-generated method stub 
     return null; 
    } 

    public long getItemId(int arg0) { 
     // TODO Auto-generated method stub 
     return 0; 
    } 


    public View getView (int position, View convertView, ViewGroup list) { 
     View element; 
     if (convertView == null) 
     { 
     LayoutInflater inflater = context.getLayoutInflater(); 
     element = inflater.inflate(R.layout.lista, null); 
     } 
     else element = convertView; 
     TextView elementLista=(TextView)element.findViewById(R.id.elementLista);  
     elementLista.setText(orase.get(position)); 
     return element; 
    } 

} 
public class WeatherAppActivity extends ListActivity { 

    Button buton; 
    ListaOrase lista; 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 
     lista=new ListaOrase(this); 
     buton=(Button)findViewById(R.id.buton); 
     setListAdapter(lista); 

     lista.add("Bucuresti"); 
     lista.add("Sibiu"); 

    } 
} 

我的XML文件是這樣的:

main.xml -- for the Activity 
<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 



<ListView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:id="@android:id/list" 
    android:layout_alignParentTop="true"/> 

<RelativeLayout 
    android:id="@+id/relative" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true"> 
<Button 
     android:id="@+id/buton" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:onClick="add" 
     android:text="Add" 
     android:layout_gravity="" 
     /> 
     </RelativeLayout> 

</RelativeLayout> 
lista.xml -- for the list 
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 
<TextView 
     android:id="@+id/elementLista" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     /> 


</LinearLayout> 

按鈕「樓下」打開一個對話框,將項添加到我的清單。它顯然不起作用,但我認爲它是BaseAdapter(ListaOrase)本身,因爲意圖不會例外。如果我硬編碼的項目會顯示出來(布加勒斯特和錫比烏),我會很感激。

我在做什麼錯? 非常感謝! :)

+0

你重寫了ListaOrase類中的所有baseadapter方法嗎? – Abhi

+0

是的,但我已將它們從代碼中刪除,以節省空間並看起來更乾淨。代碼編譯時,沒有語法錯誤,並且不會引發異常。 – FloIancu

+0

hey setListAdapter(lista);在list.add()語句並嘗試後,讓我得到結果 – Abhi

回答

7

你的代碼幾乎完美的問題是在getcount()方法中返回orase.size(),你返回0,在ListaOrase類中添加未實現的方法。 你ListaOrase應該是這樣的:

class ListaOrase extends BaseAdapter{ 
    private Activity context; 
    ArrayList<String> orase; 

    public ListaOrase(Activity context){ 
     this.context=context; 
     orase=new ArrayList<String>(); 
    } 
    public void add(String string){ 
     orase.add(string); 
    } 

    public View getView (int position, View convertView, ViewGroup list) { 
     View element; 
     if (convertView == null) 
     { 
     LayoutInflater inflater = context.getLayoutInflater(); 
     element = inflater.inflate(R.layout.lista, null); 
     } 
     else element = convertView; 
     TextView elementLista=(TextView)element.findViewById(R.id.elementLista);  
     elementLista.setText(orase.get(position)); 
     Log.e("",orase.get(position)); 
     return element; 
    } 
    public int getCount() { 
     // TODO Auto-generated method stub 
     return orase.size(); 
    } 
    public Object getItem(int position) { 
     // TODO Auto-generated method stub 
     return null; 
    } 
    public long getItemId(int position) { 
     // TODO Auto-generated method stub 
     return 0; 
    } 

} 

希望這有助於

+0

就像我說過的,我已經實現了它們,爲了節省空間,我只在這裏省略了它們。我會添加它們以便可以獲得完整的圖像,但那不是。從我所知道的,getView()方法不會被調用。 – FloIancu

+0

爲我工作,我測試你的代碼,在getcount方法返回orase.size(),你返回0,看到我的代碼上面 – Abhi

+0

現在它完美的作品。儘管如此,我看不出兩個代碼的差異。你完全改變了什麼,因爲它完全搞砸了我!感謝您的時間。 – FloIancu

1

getCount方法真的返回0,所以consquently getView()沒有被調用。當我改爲:

getcount() { 
    return arrayObject.Size(); 
}