ListView没有从ArrayList数据填充

时间:2015-01-31 22:11:33

标签: android android-listview android-arrayadapter

我正在尝试使用已连接到设备的所有蓝牙设备填充ListView。我进行了调试,ArrayAdapter正在接收数据但没有将其传递给ListView

我的代码如下所示

Connect2.java

public class Connect2 extends ListFragment {

private LayoutInflater classInflater;
private ViewGroup classContainer;

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    // Inflate the layout for this fragment

    View v = inflater.inflate(R.layout.connect2,container,false);
    final ListView listview = (ListView) v.findViewById(android.R.id.list);

    BluetoothAdapter myBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    Set<BluetoothDevice> pairedDevices = myBluetoothAdapter.getBondedDevices();

    List<String> previousDevices = new ArrayList<String>();
    for(BluetoothDevice bt : pairedDevices) {
        previousDevices.add(bt.getName());
    }

    ArrayAdapter BTListAdapter = new ArrayAdapter<String>(getActivity(), R.layout.connect2, previousDevices);

    listview.setAdapter(BTListAdapter);

    return inflater.inflate(R.layout.connect2, container, false);
}
}

Connect2.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"
    android:orientation="vertical"
    android:baselineAligned="false">


    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:paddingLeft="10dp"
            android:layout_weight="1"
            android:id="@+id/connectNewBtn"
            android:text="@string/newBT"/>

        <Switch
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:paddingRight="10dp"
            android:text="@string/BTtoggle"
            android:id="@+id/BTSwitch"
            android:layout_weight="0"
            android:layout_gravity="end"/>

    </LinearLayout>


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

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

非常愚蠢的错误,请参阅退货声明

您没有返回加载listview的视图。您将返回一个全新的视图。

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    // Inflate the layout for this fragment

    View v = inflater.inflate(R.layout.connect2,container,false);
    final ListView listview = (ListView) v.findViewById(android.R.id.list);

    BluetoothAdapter myBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    Set<BluetoothDevice> pairedDevices = myBluetoothAdapter.getBondedDevices();

    List<String> previousDevices = new ArrayList<String>();
    for(BluetoothDevice bt : pairedDevices) {
        previousDevices.add(bt.getName());
    }

    ArrayAdapter BTListAdapter = new ArrayAdapter<String>(getActivity(), R.layout.connect2, previousDevices);

    listview.setAdapter(BTListAdapter);

    return v; // CHANGED THIS LINE ONLY
}