我正在尝试将我的指示器设置为textvIEw旁边,但我无法获得正确的代码来执行此 *** 作.
XML:
<TextVIEw androID:ID="@+ID/lblListheader" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:gravity="center" androID:paddingleft="?androID:attr/expandableListPreferredItempaddingleft" androID:textcolor="#000000" androID:textSize="17dp" /><ImageVIEw androID:ID="@+ID/imageVIEw1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_alignParentleft="true" androID:layout_toleftOf="@+ID/lblListheader" androID:src="@drawable/custom_arrow" />
这是我发现研究的唯一代码堆栈,但我无法使其工作:
//insIDe getGropVIEw methodVIEw v; if (convertVIEw == null) { v = newGroupVIEw(isExpanded, parent); } else { v = convertVIEw; } bindVIEw(v, mGroupData.get(groupposition), mGroupFrom, mGroupTo); ((ImageVIEw) v.findVIEwByID(R.ID.vIDeos_group_indicator)) .setimageResource(isExpanded?R.drawable.vIDeos_chevron_expanded:R.drawable.vIDeos_chevron_collapsed); return v;
主要的问题是它“强调”newGroupVIEw方法等,因为我没有这样的方法,并没有提到如何在我看到的example中创建它.
此外,一旦我得到解决方案,有人可以尝试向我解释这个代码吗?我已经阅读了很多时间,我只是无法理解它,我是初学者.
解决方法:
以下是自定义可扩展列表视图的示例:
如果在新项目中应用此代码,您希望看到什么:
将此代码创建为活动
public class ExpActivity extends Activity{ @OverrIDe public voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); // Находим наш List ExpandableListVIEw ListVIEw = (ExpandableListVIEw)findVIEwByID(R.ID.exListVIEw); //Создаем набор данных для адаптера ArrayList<ArrayList<String>> groups = new ArrayList<ArrayList<String>>(); ArrayList<String> children1 = new ArrayList<String>(); ArrayList<String> children2 = new ArrayList<String>(); children1.add("Child_1"); children1.add("Child_2"); groups.add(children1); children2.add("Child_1"); children2.add("Child_2"); children2.add("Child_3"); groups.add(children2); //Создаем адаптер и передаем context и список с данными Explistadapter adapter = new Explistadapter(getApplicationContext(), groups); ListVIEw.setAdapter(adapter); }}
将expandableListVIEw添加到main.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" ><ExpandableListVIEw androID:ID="@+ID/exListVIEw" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:indicatorleft="250dp" androID:indicatorRight="300dp" /></linearLayout>
创建一个适配器类
public class Explistadapter extends Baseexpandablelistadapter { private ArrayList<ArrayList<String>> mGroups; private Context mContext; public Explistadapter (Context context,ArrayList<ArrayList<String>> groups){ mContext = context; mGroups = groups; } @OverrIDe public int getGroupCount() { return mGroups.size(); } @OverrIDe public int getChildrenCount(int groupposition) { return mGroups.get(groupposition).size(); } @OverrIDe public Object getGroup(int groupposition) { return mGroups.get(groupposition); } @OverrIDe public Object getChild(int groupposition, int childposition) { return mGroups.get(groupposition).get(childposition); } @OverrIDe public long getGroupID(int groupposition) { return groupposition; } @OverrIDe public long getChildID(int groupposition, int childposition) { return childposition; } @OverrIDe public boolean hasStableIDs() { return true; } @OverrIDe public VIEw getGroupVIEw(int groupposition, boolean isExpanded, VIEw convertVIEw, VIEwGroup parent) { if (convertVIEw == null) { LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); convertVIEw = inflater.inflate(R.layout.group_vIEw, null); } if (isExpanded){ //Изменяем что-нибудь, если текущая Group раскрыта } else{ //Изменяем что-нибудь, если текущая Group скрыта } TextVIEw textGroup = (TextVIEw) convertVIEw.findVIEwByID(R.ID.textGroup); textGroup.setText("Group " + Integer.toString(groupposition)); return convertVIEw; } @OverrIDe public VIEw getChildVIEw(int groupposition, int childposition, boolean isLastChild, VIEw convertVIEw, VIEwGroup parent) { if (convertVIEw == null) { LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); convertVIEw = inflater.inflate(R.layout.child_vIEw, null); } TextVIEw textChild = (TextVIEw) convertVIEw.findVIEwByID(R.ID.textChild); textChild.setText(mGroups.get(groupposition).get(childposition)); button button = (button)convertVIEw.findVIEwByID(R.ID.buttonChild); button.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw vIEw) { Toast.makeText(mContext,"button is pressed",5000).show(); } }); return convertVIEw; } @OverrIDe public boolean isChildSelectable(int groupposition, int childposition) { return true; }}
方法和参数的名称非常丰富.方法getGroupVIEw和getChildVIEw相应地为pparents和children返回VIEw.在getGroupVIEw方法中使用参数isExpanded,例如,我们可以在不同的状态下更改组的后面.使用LayoutInflater我们使用自定义布局列表.
group_vIEw.xml
<?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"> <TextVIEw androID:ID="@+ID/textGroup" androID:layout_wIDth="wrap_content" androID:layout_height="50dp" androID:layout_marginleft="5dp" androID:layout_margintop="20dp" androID:textcolor="@androID:color/white" androID:textStyle="bold" /></linearLayout>
child_vIEw.xml
<?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"> <TextVIEw androID:ID="@+ID/textChild" androID:layout_wIDth="wrap_content" androID:layout_height="40dp" androID:layout_marginleft="20dp" androID:layout_margintop="20dp" androID:textcolor="@androID:color/white" /> <button androID:ID="@+ID/buttonChild" androID:layout_wIDth="100dp" androID:layout_height="40dp" androID:layout_marginleft="150dp" androID:layout_margintop="10dp" androID:text="button" androID:focusable="false" /></linearLayout>
在子视图中我们添加了一个按钮,在适配器方法getChildVIEw中控制其按下.以类似的方式,我们可以在group_vIEw.xml中添加按钮和其他元素.
另外,我们可以将听众列入我们的列表.
•OnChildClickListener – 按下元素
•OnGroupCollapseListener – 折叠组
•OnGroupExpandListener – 扩展组
•OnGroupClickListener – 按组
现在让我们看看groupIndicater – 组状态的指标.它的位置指向main.xml,参数indicatorleft,indicatorRigh – 对应于左右边框.默认情况下,指示器放在左侧,什么都不是那么酷.
我们也可以添加自定义图像,为此,我们需要在使用此代码绘制的文件夹中添加indicator.xml.
<?xml version="1.0" enCoding="utf-8"?><selector xmlns:androID="http://schemas.androID.com/apk/res/androID"> <item androID:state_expanded="true" androID:drawable="@drawable/imageOpen"> </item> <item androID:state_empty="true" androID:drawable="@drawable/imageClose"> </item></selector>
其中imageOpen用于扩展组
imageClose用于折叠组
下次我们需要在main.xml中为列表的参数添加一行
androID:groupIndicator="@drawable/indicator"
总结 以上是内存溢出为你收集整理的java – 更改ExpandableListView中指示器的位置导致问题全部内容,希望文章能够帮你解决java – 更改ExpandableListView中指示器的位置导致问题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)