我是" A"片段如下(recyclerview): https://img.exs.lv/e/z/ezeliitis/frags.png
答案 0 :(得分:-1)
您可以使用手动构造函数将数据从片段A 传递到片段B 。
CURL *curl = curl_easy_init();
if(curl) {
const char *data = "<Text>data to send...</Text>";
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
}
从片段A 执行此操作以定义 fragB
public class fragB extends Fragment{
int type;
public fragB(){
this.type = DEFAULT_TYPE;
}
public fragB(int type){
this.type = type;
}
}
或
Fragment f = new fragB(TYPE_CAR);
注意:空构造函数仅用于解析异常。