当前位置: 首页 > 知识库问答 >
问题:

片段中的ListView未显示

戎元忠
2023-03-14

我试图在片段中填充一个具有自定义布局的listView。但是,当我启动应用程序时,listview的内容没有加载(这是使用数组适配器获得的)。下面是加载listView的代码:

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        view = inflater.inflate(R.layout.activity_start, container, false);
        ProfilesDatabaseHelper dbHelper = ac.getDbManager();
        ProfileManagerDAO dbDao = ac.getProfileManagerDAO();
        //TODO mettere profilehandler dentroo profileapp.
        ProfileHandler handler = new ProfileHandler(view.getContext());
        Profile profile = handler.getCurrentProfile();
        TextView label = (TextView) view.findViewById(R.id.labelvlm);
        label.setText("TEST");
        if(handler!=null){
            label.setText("Ring Volume: " + profile.getRingVolume() + "Max: " 
                    + handler.getMaxVolume(AudioManager.STREAM_RING));
            label.append("\tVoice Call Volume: " + profile.getCallVolume()
                    + " Max: " + handler.getMaxVolume(AudioManager.STREAM_VOICE_CALL));
            //manager.setStreamVolume(AudioManager.STREAM_VOICE_CALL, 5, 0); 
            label.append("\tWIFI Status: " + handler.isWifiActive());           
        }
        Ringtone tone = RingtoneManager.getRingtone(view.getContext(), Settings.System.DEFAULT_RINGTONE_URI);
        if(tone!=null){
            label.append("\n" + tone.getTitle(view.getContext()));  
        }
        SeekBar bar = (SeekBar) view.findViewById(R.id.ringtonevolumeBar);
        bar.setMax(handler.getMaxVolume(AudioManager.STREAM_RING));     
        bar.setProgress(profile.getRingVolume());
        ArrayList<String> profiles = ac.getProfileManagerDAO().getprofileNamesList();
        if(profiles!=null){
            Log.d(TAG, "List size: " + profiles.size());
            ListView profileslist = (ListView) view.findViewById(R.id.profileslist);            
            adapter = new ProfilesArrayAdapter(view.getContext(), R.layout.list_item, profiles);
            profileslist.setAdapter(adapter);
//          List<String> testing = new ArrayList<String>();
//            testing.add("Hey");
//            testing.add("Hey Do");
//            testing.add("Hey It");
//            testing.add("Hey Please");
//            ArrayAdapter moviesAdapter = new ArrayAdapter<String>(getActivity(),android.R.layout.simple_list_item_1, testing);
//            profileslist.setAdapter(moviesAdapter);
            //profileslist.setA
        }
        return view;
    }

这里是我的CustomAdapter的代码:

public class ProfilesArrayAdapter extends
    ArrayAdapter<HashMap<String, Integer>> {

ArrayList<HashMap<String, Integer>> entries;
int resourceId;
Context context;

static class ProfileItemHandler {
    TextView profileId;
    TextView profileName;
}

public ProfilesArrayAdapter(Context context, int layoutResourceId, ArrayList<HashMap<String,Integer>> profiles) {
    super(context, layoutResourceId);
    this.context = context;
    this.resourceId = layoutResourceId;
    this.entries = profiles;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View row = convertView;
    ProfileItemHandler handler = null;
    if(convertView==null){
        LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        row = inflater.inflate(R.layout.list_item, parent, false);
        handler = new ProfileItemHandler();
        handler.profileId = (TextView) row.findViewById(R.id.profileName);
        handler.profileName = (TextView) row.findViewById(R.id.profileId);
        row.setTag(handler);
    } else {
        handler = (ProfileItemHandler) row.getTag();
    }
    HashMap<String, Integer> entry = this.getItem(position);
    for(String cur_entry: entry.keySet()){
        handler.profileId.setText(cur_entry);
        handler.profileName.setText(entry.get(cur_entry));
    }               
    return row;
}

}

这是列表项布局的xml:

    <LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
    <TextView android:layout_height="wrap_content" android:id="@+id/profileId" android:text="TextView" android:textAppearance="?android:attr/textAppearanceLarge" android:layout_width="wrap_content"></TextView>
    <TextView android:text="TextView" android:id="@+id/profileName" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>

</LinearLayout>

这里是主要布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_start"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".StartActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/labelvlm"
        android:text="@string/hello_world" />

    <SeekBar
        android:id="@+id/ringtonevolumeBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/labelvlm"        
        android:layout_marginTop="122dp" />

    <ListView
        android:id="@+id/profileslist"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignLeft="@+id/ringtonevolumeBar"
        android:layout_below="@+id/ringtonevolumeBar"
        android:layout_marginTop="68dp" >
    </ListView>

</RelativeLayout>

我没有收到任何错误消息,但是当我启动应用程序时,listView中没有显示任何项目,并且永远不会调用我的适配器的getView方法。有什么想法吗?

共有2个答案

程正阳
2023-03-14

我的第一个猜测是(因为您没有收到错误消息),这一行:

ArrayList<HashMap<String, Integer>> profiles = ac.getProfileManagerDAO().getprofileList();

返回大小为0或通常为null的空ArrayList。因此,ListView不包含任何项,并且从不调用getView()。

请同时发布片段和活动的布局文件,以及片段的onCreateView()方法和活动的onCreate()方法。

此外,我在问自己为什么会有这样的代码:

ArrayList<HashMap<String, Integer>> profiles = ac.getProfileManagerDAO().getprofileList();
    if(profiles!=null){
        Log.d(TAG, "List size: " + profiles.size());
        ListView profileslist = (ListView) getActivity().findViewById(R.id.profileslist);           
        adapter = new ProfilesArrayAdapter(getActivity(), R.layout.list_item, profiles);
        profileslist.setAdapter(adapter);
    }

不在Fragments onCreateView()方法中?这样就不会调用getActivity()。findViewById(…)但你可以称之为充气视图。findViewById(…)直接在充气布局上。

更新:您的活动是否扩展了FragmentActive?在您的活动代码中,片段“添加”或“替换”到布局的哪个位置?

曾元忠
2023-03-14

我发现了问题。它位于构造函数内部:

public ProfilesArrayAdapter(Context context, int layoutResourceId, ArrayList<HashMap<String,Integer>> profiles) {
    super(context, layoutResourceId);
    this.context = context;
    this.resourceId = layoutResourceId;
    this.entries = profiles;
}

在第一行,对超级构造函数的调用是错误的。事实上,正确的呼叫应该是:

super(context, layoutResourceId, profiles);

至此,列表已正确填充。

 类似资料:
  • 我试图在应用程序启动时显示项目的listview。但在应用程序启动时,没有显示listview,只有一个空白屏幕。下面是代码: MainActivity.java 但是现在我在logcat中得到了以下内容: 并且应用程序停止..请帮助!

  • 我有Mainactive,它保存片段。我的一个片段(参与者)检查数据库中是否有任何内容。如果没有,则显示带有消息以添加数据的片段(空参与者列表)。如果是,它显示带有2个选项卡的TabHost片段,其中一个包含带有数据库条目的ListView片段(参与者列表)。有一个FAB按钮可以添加更多记录。添加另一条记录后如何刷新ListView?我不确定,因为TabHost不适用于我在应用程序中使用的Frag

  • 02-27 04:45:26.808:e/AndroidRuntime(4739):致命异常:main 02-27 04:45:26.808:e/AndroidRuntime(4739):java.lang.runtimeException:无法启动活动ComponentInfo{com.koenb_fashion_fix/com.koenb_fashion_fix.mainActivity}:j

  • 此时,我学习了如何使用javafx-fxml应用程序制作程序。我了解了如何在listview上显示listcell。我使用下面的代码。但从代码来看,它无法在listview上显示listcell。当我运行程序时,只显示listview,而不显示listcell。请帮帮我。 Main.java 主要的fxml Student.java ListCell.fxml StudentListViewCel

  • 我试图使用另一个片段中的数据填充我的Listview。 我可以从另一个片段获取数据,但当我尝试创建listview对象时,它返回null。 结果,该应用程序正在崩溃。 我从一个片段中获取用户的数据,然后从另一个片段中调用一个方法来传递数据。我正在第二个方法的poplist()方法中创建listview对象和数组适配器。但是,由于空指针异常,应用程序正在崩溃。请帮忙。 我尝试了以下方法,但不起作用

  • 我正试图在现有的应用程序中实现新的Android导航组件。我有两个片段除了名字外都是一样的。当我将startDestination设置为fragment2时,片段似乎显示正确。当startDestination设置为fragment1时,我看不到膨胀的视图,但我确实看到了“Fragment 1 created”toast。 我做错了什么? 导航图。xml 主活动布局: Fragment1布局: 依