2012-05-14 23 views
1

我想通過實現一個自定義適配器在Android中實現ExpandableListView,但我沒有得到任何輸出在屏幕上。可擴展ListView與自定義適配器

主要XML佈局:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
> 
<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="This is an expandable listview" 
    /> 
<ExpandableListView 
    android:id="@android:id/list" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    /> 


</LinearLayout> 

集團佈局文件是:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="horizontal" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
> 

<TextView 
    android:id="@+id/tvPlayerName" 
    android:textSize="14px" 
    android:textStyle="normal" 
    android:layout_width="150px" 
    android:layout_height="wrap_content" 
    /> 

子佈局文件是:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="horizontal" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
> 

<TextView 
    android:id="@+id/tvPlayerName" 
    android:textSize="14px" 
    android:textStyle="normal" 
    android:layout_width="150px" 
    android:layout_height="wrap_content" 
    /> 

</LinearLayout> 

,最後,活動類文件是:

public class ExpandableListViewTest extends ExpandableListActivity { 
String groupElements[] = {"India","Austrailia","England","South Africa"}; 
String childElements[][] = { 
    {"Sachin Tendulkar","Raina","Dhoni","Yuvraj"}, 
    {"Ponting","Adam Gilchrist","Michael Clarke"}, 
    {"Andrew Strauss","Kevin Peterson","Nasir Hussain"}, 
    {"Grame Smith","AB de Villiers","Jacques Kallis"} 
}; 

int width; 
ExpandableListView expList; 
/** Called when the activity is first created. */ 
@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
    //Setup our adapter 
    MyExpandableAdapter mAdapter = new MyExpandableAdapter(this); 
    setListAdapter(mAdapter); 
} 
public class MyExpandableAdapter extends BaseExpandableListAdapter 
{ 
    private Context myContext; 

    public MyExpandableAdapter(Context context) 
    { 
     this.myContext= context; 
    } 

@Override 
public Object getChild(int groupPosition, int childPosition) { 
    // TODO Auto-generated method stub 
    return childElements[groupPosition][childPosition]; 
} 

@Override 
public long getChildId(int groupPosition, int childPosition) { 
    // TODO Auto-generated method stub 
    return childPosition; 
} 

@Override 
public View getChildView(int groupPosition, int childPosition, 
     boolean isLastChild, View convertView, ViewGroup parent) { 
    // TODO Auto-generated method stub 
    if(convertView == null) 
    { 
     LayoutInflater inflater = getLayoutInflater(); 
     convertView = inflater.inflate(R.layout.child, parent,false); 
    } 
    TextView tvPlayerName = 
     (TextView)convertView.findViewById(R.id.tvPlayerName); 
    tvPlayerName.setText(childElements[groupPosition][childPosition]); 

    return convertView; 

} 

@Override 
public int getChildrenCount(int groupPosition) { 
    // TODO Auto-generated method stub 
    return childElements[groupPosition].length; 
} 

@Override 
public Object getGroup(int groupPosition) { 
    // TODO Auto-generated method stub 
    return null; 
} 

@Override 
public int getGroupCount() { 
    // TODO Auto-generated method stub 
    return 0; 
} 

@Override 
public long getGroupId(int groupPosition) { 
    // TODO Auto-generated method stub 
    return 0; 
} 

@Override 
public View getGroupView(int groupPosition, boolean isExpanded, 
     View convertView, ViewGroup parent) { 
    // TODO Auto-generated method stub 
    if(convertView == null) 
    { 
     LayoutInflater inflater = getLayoutInflater(); 
     convertView = inflater.inflate(R.layout.group,parent,false); 
    } 
    TextView tvGroupName = (TextView)convertView.findViewById(R.id.groupName); 
    //tvGroupName.setText(groupElements[groupPosition]); 
    tvGroupName.setText("Group Row"); 

    return convertView; 

} 

@Override 
public boolean hasStableIds() { 
    // TODO Auto-generated method stub 
    return false; 
} 

@Override 
public boolean isChildSelectable(int groupPosition, int childPosition) { 
    // TODO Auto-generated method stub 
    return false; 
} 


} 

} 

一切似乎straighhtforward不夠好,但在運行的應用程序後,屏幕一直blank.Any幫助/理想表示讚賞。

回答

2

您的代碼看起來不完整。您剛剛在方法getGroupgetGroupIdgetGroupCount中佔位符。他們應該參考您的groupElements陣列。

getGroupCount目前返回零的事實足以讓ExpandableListView不顯示任何內容。

0

您可能應該將getGroupCount()的返回值設置爲groupElements.length

當前返回的表示您沒有任何組,因此沒有任何可顯示的內容。

+0

這工作,謝謝。 – user1107888

+1

很高興聽到!祝你好運:) – rekaszeru

相關問題