Viewflow无法将TextView数据设置为其他布局

时间:2012-11-20 12:38:27

标签: android android-viewpager

我在https://github.com/pakerfeldt/android-viewflow

使用android-viewflow

我在https://github.com/pakerfeldt/android-viewflow/blob/master/viewflow-example/src/org/taptwo/android/widget/viewflow/example/DiffViewFlowExample.java

使用DiffViewFlowExample

我无法将数据设置到第二个和上面的视图中。明白使用

tvProfileName = (TextView) findViewById(R.id.tvProfileName);

给出空误差,而

LayoutInflater factory = finalIndividual.this.getLayoutInflater();
View secondLayout = factory.inflate(R.layout.finalindividual_second, null);
tvProfileName = (TextView) secondLayout.findViewById(R.id.tvProfileName);

在使用setText();时似乎没有设置任何数据。

文档仅提供第一个视图的示例,而不是第二个视图的示例。因此,我陷入了困境。

有什么想法吗?感谢。

1 个答案:

答案 0 :(得分:0)

如果你想更改“不同视图 - >”下的文本View2,那么你需要在“DiffAdapter.java”中为那里定义的名字数组进行更改......