Android   发布时间:2022-04-01  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了java – 更改ExpandableListView中指示器的位置导致问题大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试将我的指示器设置为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" />
@H_772_8@

这是我发现研究的唯一代码堆栈,但我无法使其工作:

//inside getGropView method
View 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;
@H_772_8@

主要的问题是它“强调”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);
    }
} 
@H_772_8@

将expandableListView添加到main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://scheR_815_11845@as.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>
@H_772_8@

创建一个适配器类

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;
    }
}
@H_772_8@

方法和参数的名称非常丰富.方法getGroupView和getChildView相应地为pparents和children返回View.在getGroupView方法中使用参数isExpanded,例如,我们可以在不同的状态下更改组的后面.使用LayoutInflater我们使用自定义布局列表.

group_view.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://scheR_815_11845@as.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>
@H_772_8@

child_view.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://scheR_815_11845@as.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>
@H_772_8@

在子视图中我们添加一个按钮,在适配器方法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://scheR_815_11845@as.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>
@H_772_8@

其中imageOpen用于扩展组
imageClose用于折叠组

下次我们需要在main.xml中为列表的参数添加一行

android:groupInDicator="@drawable/inDicator"
@H_772_8@

大佬总结

以上是大佬教程为你收集整理的java – 更改ExpandableListView中指示器的位置导致问题全部内容,希望文章能够帮你解决java – 更改ExpandableListView中指示器的位置导致问题所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: