からのフラグメントのテキストを設定することができ、私はNullPointerExceptionが、がどのように活動
主な活動
ProductDetail productDetail = (ProductDetail)findViewById(R.id.pd_details);
productDetail.setDescription("This is description");
FragmentDescription.java
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_description, null);
ProductDetail.java
@Override
public void setDescription(String description) {
tvDescription.setText(description);
}
を使用しましたコンストラクタをフラグメントに追加してそこに配置します。 – Nanoc