gpt4 book ai didi

android - 无法从 onListItemClick 开始 fragment

转载 作者:行者123 更新时间:2023-11-30 01:42:01 24 4
gpt4 key购买 nike

我试图从 ListView 的 OnItemClickListener 事件开始一个 fragment ,但它没有显示任何内容。为了检查 OnItemClickListener 是否正常工作,我包含了一个 Toast 来显示一些文本及其工作正常。这是我的代码

这是主要 Activity 的ItemClickListener的代码

        listView.setOnItemClickListener(new AdapterView.OnItemClickListener(){
public void onItemClick(AdapterView<?> parent, View view, int position, long id){

Fragment fragment = new Friendtilefragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.replace(R.id.friendtilefragment, fragment);
transaction.addToBackStack(null);
transaction.commit();

Toast.makeText(getApplicationContext(), "An item of the ListView is clicked.", Toast.LENGTH_LONG).show();
}
});

Friendtile fragment 的代码

package com.example.xxxxxxxx.socialoid;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Friendtilefragment extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater,ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.friendtilefragment_layout, container, false);
}
}

mainactivity_layout.xml

<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@color/list_divider"
android:dividerHeight="1dp"
android:listSelector="@drawable/list_row_selector" />

<fragment
android:id="@+id/friendtilefragment"
android:name="com.example.xxxxxxxx.socialoid.Friendtilefragment"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</android.support.v4.widget.SwipeRefreshLayout>

friendtilefragment_layout.xml

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is textview"/>

</LinearLayout>

最佳答案

您必须在 MainActivity 中创建一个 FrameLayout 并将 android:id="@+id/friendtilefragment" 移动到 FrameLayout

您的 mian_activity 中的示例

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/friendtilefragment">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

.....

Fragment fragment = new Friendtilefragment(); 更改为 Friendtilefragment fragment = new Friendtilefragment();

检查 this

关于android - 无法从 onListItemClick 开始 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34367480/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com