预先感谢您的任何帮助。
我想在片段中注入不同的字符串,但我不确定如何。
在这一点上,我借用的代码是:
公共类 MyFragment 扩展片段{
int mCurrentPage;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/** Getting the arguments to the Bundle object */
Bundle data = getArguments();
/** Getting integer data of the key current_page from the bundle */
mCurrentPage = data.getInt("current_page", 0);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.myfragment_layout, container,false);
TextView tv = (TextView ) v.findViewById(R.id.tv);
tv.setMovementMethod(new ScrollingMovementMethod());
tv.setText("You are viewing the page #" + mCurrentPage + "\n\n" +"\n\n" + "Swipe Horizontally left / right");
return tv;
}
这就是我想要它做的,只是我想根据它所在的页面显示不同的文本字符串。我在此示例代码中看到可以更新页码 (mCurrentPage),但我想将其与不同的文本字符串相关联。
谢谢!