2017-04-22 106 views
1

我想從JSON中獲取數據並將一部分數據發送到所有碎片。 這裏是我的代碼:如何將JSON數據從活動發送到片段?

private void setupViewPager(ViewPager viewPager,ArrayList<Product> productname,int p) { 
     ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager()); 
     Bundle args = new Bundle(); 
} 
     String price = productname.get(1).getPrice(); 
     args.putString("key", price); 
     TheFragment tf1 = new TheFragment(); 
     TheFragment tf2 = new TheFragment(); 
     TheFragment tf3 = new TheFragment(); 
     TheFragment tf4 = new TheFragment(); 
     adapter.addFragment(tf1 , "ONE"); 
     tf1.setArguments(args); 
     adapter.addFragment(tf2 , "Two"); 
     tf2.setArguments(args); 
     adapter.addFragment(tf3 , "Three"); 
     tf3.setArguments(args); 
     adapter.addFragment(tf4 , "Four"); 
     tf4.setArguments(args); 

//3  adapter.addFragment(new TheFragment(), "TWO"); // Can I send data by coding this way? 
//3  adapter.addFragment(new TheFragment(), "THREE"); 
//3  adapter.addFragment(new TheFragment(),"THE 4"); 
     viewPager.setAdapter(adapter); 
    } 

這個我已經在一個數組列表和n=jsonArray.length();檢索JSON值之前。

setupViewPager(viewPager,arrayList,n); 

JSON文件包含名稱,價格和圖像。我想在我的片段中顯示價格。

public class TheFragment extends Fragment { 

    TextView tv; 
    public TheFragment() { 

    } 
    String value = getArguments().getString("key"); 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
    /* if(value!=null){ 
      tv.setText(value); 
     } */ 

    } 

    @Override 
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
          Bundle savedInstanceState) { 
     // Inflate the layout for this fragment 
     View view = inflater.inflate(R.layout.fragment_this, container, false); 
     tv = (TextView) getView().findViewById(R.id.thePrice); 
     tv.setText(value); 
     return view; 
    } 
} 

該代碼未顯示任何錯誤,但應用程序未運行。我正在做什麼錯誤和可能的解決方案?謝謝。

+0

是您的片段在您向他們發送json時已經打開。 –

+0

我的碎片打開時,我沒有發送任何東西,但因爲我想發送數據並想要在碎片佈局的textview中設置文本,它不工作。 – Saket

回答

0

變化的片段 -

public class TheFragment extends Fragment { 

    TextView tv; 
    public TheFragment() { 

    } 

    @Override 
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
          Bundle savedInstanceState) { 
     // Inflate the layout for this fragment 
     return inflater.inflate(R.layout.fragment_this, container, false); 
    } 

    @Override 
    public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { 
     super.onViewCreated(view, savedInstanceState); 
     tv = (TextView) view.findViewById(R.id.thePrice); 
    } 

    @Override 
    public void onActivityCreated(@Nullable Bundle savedInstanceState) { 
     super.onActivityCreated(savedInstanceState); 
     String price = getArguments().getString("key"); 
     tv.setText(price); 
    } 
} 

希望這個代碼線將工作做好。

+0

它將如何工作?片段已經上了,所以現在你不會得到價值onActivityCreated() –

+0

@jiteshmohite我已經運行的代碼,它的工作原理,因爲viewPager.setAdapter(適配器)設置參數後調用。所有數據都預先加載。所以當適配器連接這個片段時,它肯定會在ActivityCreated()上徹底完成。 – MMBarno

+0

謝謝,它正在工作:) – Saket

0

嗨在片段中使用newInstance方法如下。

public static Fragment newInstance(ArrayList<Product> jsonData) { 

      Bundle args = new Bundle(); 
      args.putStringArrayList("Key","jsonDatainArray"); 
      fragment.setArguments(args); 
      return fragment; 
} 

和初始化片段如下

TheFragment theFragment= TheFragment.newInstance("arrayListHere"); 

使用方法來獲得ArrayList的在onCreateView或片段onCreate

+0

您也可以將數據作爲json字符串。 –

相關問題