0

所以我使用了一个自定义的 ArrayAdapter 实现,这样我就可以访问我的列表视图元素中的切换按钮。

每个列表视图都有一个文本视图和一个切换按钮。我必须使用附加到列表视图的自定义 ArrayAdapter,以便我可以将正确的切换按钮附加到被单击的列表视图的位置。然而,每次我膨胀布局以获得视图时,列表视图中的文本视图都会消失。值仍然存在,但 textview 不存在。但是切换按钮显示正常。这是用于扩展布局并获取视图的代码:

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {
        View v = convertView;
        if (v == null) {
            LayoutInflater inflater = ((Activity)context).getLayoutInflater();
            v = inflater.inflate(R.layout.activity_alarm_item, parent, false);
        }
        ToggleButton toggle = (ToggleButton) v.findViewById(R.id.alarm_status);
        toggle.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    Log.d("ENABLE ALARM", Integer.toString(position));
                    enableAlarm(position);
                } else {
                    disableAlarm(position);
                }

            }
        });
        return v;
    }

使布局膨胀的两条线看起来有问题吗?

布局很好。我恢复到原来的适配器,textview 文本又回来了。

但是,这是活动布局:

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="5dp"
        android:layout_marginBottom="5dp" >

    <TextView
        android:id="@+id/time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:textIsSelectable="false"
        android:textSize="20sp"
        android:paddingLeft="5dp" />


    <ToggleButton
        android:id="@+id/alarm_status"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:clickable="true"
        android:onClick="enableAlarm"
        android:background="?android:attr/selectableItemBackground"
        android:focusable="false" />

    <TextView
        android:layout_width="1px"
        android:layout_height="fill_parent"
        android:layout_toLeftOf="@id/alarm_status"
        android:layout_centerVertical="true"
        android:background="?android:attr/dividerVertical" />

    </RelativeLayout>
4

2 回答 2

2

您将文本设置到TextView哪里?TextView似乎是空的。这就是我猜它不显示的原因。

将文本设置为TextViewXml 文件本身

android:text ="text"

否则在getView函数内部

TextView textView = (TextView) v.findViewById(R.id.time);
textView.setText("Text");
于 2013-11-13T06:53:55.417 回答
0

写评论太长了,我尝试将其作为答案。我不确定您是否正确获取上下文。我个人在自定义适配器中声明布局充气器如下:

private LayoutInflater mInflater = (LayoutInflater)   
                getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); 

getView()然后我在下面使用充气机

v = mInflater.inflate(R.layout.activity_alarm_item, parent, false);

告诉我它是否能解决您的问题,否则我会删除我的答案。

于 2013-11-13T06:27:59.450 回答