gpt4 book ai didi

android - 如何将数据从一个 fragment 发送到android中的另一个 fragment ?

转载 作者:行者123 更新时间:2023-11-29 15:47:25 25 4
gpt4 key购买 nike

enter image description here

你好我使用 pager 和 fragment 制作了一个简单的选项卡 View 。所以我的 View 中有两个选项卡。在一个选项卡中,我有 ListView ,其中每一行都有 TextView 和最喜欢的图像按钮。在第二个选项卡中,我需要显示第一个选项卡中最喜欢的所有项目名称。所以我需要发送一个从一个 fragment 到另一个 fragment 的列表。

这是我的代码

主 Activity .java

public class MainActivity extends FragmentActivity implements ActionBar.TabListener {
ViewPager viewPager;
FragmentpagerAdapter fragmentpagerAdapter;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ActionBar actionBar =getActionBar();
viewPager = (ViewPager) findViewById(R.id.pager);
fragmentpagerAdapter =new FragmentpagerAdapter(getSupportFragmentManager());
viewPager.setAdapter(fragmentpagerAdapter);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
actionBar.addTab(actionBar.newTab().setText("Stations").setTabListener(this));
actionBar.addTab(actionBar.newTab().setText("fav Station").setTabListener(this));

viewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() {
@Override
public void onPageScrolled(int i, float v, int i1) {

}

@Override
public void onPageSelected(int i) {
actionBar.setSelectedNavigationItem(i);
}

@Override
public void onPageScrollStateChanged(int i) {

}
});

}


@Override
public void onTabSelected(ActionBar.Tab tab, android.app.FragmentTransaction ft) {

viewPager.setCurrentItem(tab.getPosition());

}

@Override
public void onTabUnselected(ActionBar.Tab tab, android.app.FragmentTransaction ft) {

}

@Override
public void onTabReselected(ActionBar.Tab tab, android.app.FragmentTransaction ft) {

}
}

activity_main.xml

<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/pager"
>


</android.support.v4.view.ViewPager>

fragmentone.java

public class Fragmentone  extends Fragment{

ArrayList<DataModel> name;
boolean isPressed=false;

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_one, container, false);
name=new ArrayList<DataModel>();
name.add(new DataModel("First Station",false));
name.add(new DataModel("Second Station",false));





ListView listView = (ListView) view.findViewById(R.id.list_view);

CustomAdapter customAdapter =new CustomAdapter(getActivity(),name);
listView.setAdapter(customAdapter);



return view;
}


}

自定义适配器.java

public class CustomAdapter extends BaseAdapter implements View.OnClickListener {

private Activity activity;
private ArrayList data;
private static LayoutInflater inflater = null;
boolean isPressed=false;


public CustomAdapter(Activity a, ArrayList d) {

/********** Take passed values **********/
activity = a;
data = d;
inflater = (LayoutInflater) activity.
getSystemService(Context.LAYOUT_INFLATER_SERVICE);


}


@Override
public int getCount() {
if (data.size() <= 0)
return 1;
return data.size();
}

@Override
public Object getItem(int position) {
return position;
}

@Override
public void onClick(View v) {



}

/*********
* Create a holder Class to contain inflated xml file elements
*********/
public static class ViewHolder {

public TextView text;

public ImageButton imageButton;

}

@Override
public long getItemId(int position) {
return 0;
}

@Override
public View getView(final int position, View convertView, ViewGroup parent) {

View vi = convertView;
final ViewHolder holder;

if (convertView == null) {

/****** Inflate tabitem.xml file for each row ( Defined below ) *******/
vi = inflater.inflate(R.layout.row_layout, null);

/****** View Holder Object to contain tabitem.xml file elements ******/

holder = new ViewHolder();
holder.text = (TextView) vi.findViewById(R.id.station_name);

holder.imageButton = (ImageButton) vi.findViewById(R.id.favorite);
holder.imageButton.setBackgroundResource(R.drawable.off);

/************ Set holder with LayoutInflater ************/
vi.setTag(holder);
} else
holder = (ViewHolder) vi.getTag();

if (data.size() <= 0) {
holder.text.setText("No Data");

} else {

DataModel dataModel = (DataModel) data.get(position);

/************ Set Model values in Holder elements ***********/

holder.text.setText(dataModel.getText());

// this is for overall row click
vi.setOnClickListener(new View.OnClickListener() {



@Override
public void onClick(View v) {
Log.d("row is click","row click"+position);
}
});
// this is for image button onclick
holder.imageButton.setOnClickListener(new View.OnClickListener() {
DataModel dataModel = (DataModel) data.get(position);
@Override
public void onClick(View v) {
if(dataModel.isselected()){
holder.imageButton.setBackgroundResource(R.drawable.off);
dataModel.setIsselected(false);
}else{
holder.imageButton.setBackgroundResource(R.drawable.on);
dataModel.setIsselected(true);
}
isPressed = !isPressed; // reverse

}
});
;


}
return vi;
}
}

datamodel.java

public class DataModel {

String text;

DataModel(String text, boolean isselected) {
this.text = text;
this.isselected = isselected;
}

public String getText() {
return text;
}

public void setText(String text) {
this.text = text;
}

public boolean isselected() {
return isselected;
}

public void setIsselected(boolean isselected) {
this.isselected = isselected;
}

boolean isselected;
}

fragmentone.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:background="#325633"
>

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/list_view">
</ListView>

</LinearLayout>

行布局.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="horizontal"
android:descendantFocusability="blocksDescendants">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/station_name"
android:padding="10dp"
android:textColor="#eee345"
android:textAppearance="?android:textAppearanceLarge"
/>

<ImageButton android:id="@+id/favorite"
android:layout_width="wrap_content"
android:layout_height="fill_parent"

android:background="#00ffffff"
/>


</LinearLayout>

fragmenttwo.java

public class FragmentTwo extends Fragment {

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

fragment 二.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#ee2333">

</LinearLayout>

enter image description here

public class FragmentpagerAdapter extends FragmentPagerAdapter {


public FragmentpagerAdapter(FragmentManager fm) {
super(fm);
}

@Override
public Fragment getItem(int i) {

switch (i) {

case 0:
return new Fragmentone();
case 1:
return new FragmentTwo();
default:
break;



}
return null;
}

@Override
public int getCount() {
return 2;
}
}

如上图所示,我选择第一个电台是我最喜欢的电台。我需要在第二个选项卡上显示吗?这可能吗?

最佳答案

假设您要将数据从FragmentA 发送到FragmentB,那么最佳做法是使用接口(interface),然后通过容器 Activity 在 fragment 之间进行通信。下面是一个小 fragment ,它将提供我想说的内容的框架:

第 1 步:在您的 FragmentA 中定义一个接口(interface)并覆盖 onAttach() 方法,以强制您的容器 Activity 实现该接口(interface)并为其方法提供主体。

    public interface MyInterfaceListener{
public void myMethod(yourParameters)//this method will hold parameters which you can then use in your container activity to send it to FragmentB
}

private MyInterfaceListener listener;
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
if (activity instanceof MyInterfaceListener) {
listener = (MyInterfaceListener) activity;// This makes sure that the container activity has implemented
// the callback interface. If not, it throws an exception
} else {
throw new ClassCastException(activity.toString()
+ " must implemenet MyListFragment.OnItemSelectedListener");
}
}

现在,在您的 FragmentA 中,您可以将值传递给 myMethod(),例如:if (listener!=null) {
listener.myMethod(yourArguments);
}

第 2 步:现在,在您的容器 Activity 中实现回调接口(interface)

public class MyActivity extends Activity implements MyInterfaceListener{
@Override
public void myMethod(yourParameters) {
//do your stuff here. do whatever you want to do with the //parameter list which is nothing but data from FragmentA.
FragmentB fragment = (FragmentB) getSupportFragmentManager().findFragmentById(R.id.yourFragmentB);
fragment.methodInFragmentB(sendDataAsArguments);// calling a method in FragmentB and and sending data as arguments.
}
}

第 3 步:在 FragmentB 中有一个方法,例如 methodInFragmentB(yourParameters)

    public void methodInFragmentB(yourParameters){
//do whatever you want to do with the data.....
}

希望以上描述对您有所帮助。谢谢。

关于android - 如何将数据从一个 fragment 发送到android中的另一个 fragment ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32343958/

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