我正在尝试创建一个按钮,计算点击次数并在文本视图中显示它们。 尝试了我所知道的一切。 XML:
<LinearLayout
android:id="@+id/gpulay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="20dp" >
<TextView
android:id="@+id/master_control_text_gpulay"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Master Control :"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/plus_gpulay"
android:layout_width="35dp"
android:layout_height="35dip"/>
</LinearLayout>
这是我的代码:
public class Main extends Fragment {
int c=0;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if (container == null) {
return null;
}
ListView GPU_LAYOUT = (ListView)inflater.inflate(R.layout.gpu, container, false);
TextView text = (TextView) GPU_LAYOUT.findViewById(R.id.text1);
Button plus = (Button) GPU_LAYOUT.findViewById(R.id.butt1);
plus.setOnClickListener(new OnClickListener() { //null pointer this line, but it's from .srtText i think
public void onClick(View v) {
c++;
text.setText(c);
}
});
}
return GPU_LAYOUT;
}
App力在我打开时关闭,所以我甚至看不到主要布局。
答案 0 :(得分:3)
NPE
来自这里
text.setText(c);
您使用了错误的setText()
方法。当您在其中放置int
时,会查找resource
id
。你需要给它一个String
。你可以通过几种方式做到这一点一种方法是将其更改为
text.setText("" + c);
您也可以
text.setText(String.valueOf(c));
TextView Docs注意到不同的方法。
答案 1 :(得分:2)
在活动中工作时,在onCreateView中创建应用程序是错误的。
您仍然可以在onCreate方法中完成所有这些操作。
我的猜测是GPU_Layout为空或不包含您的按钮。这就是为什么button(plus)为Null并且在其上调用setOnClickListener会抛出NullPointerException。
如果您可以在充气/构建活动期间或在实际按下按钮期间解释错误发生时也会有所帮助
答案 2 :(得分:0)
1)您需要从Fragment而不是Activity扩展您的类。然后您的方法onCreateView
将起作用。然后将此片段设置为Activity的contentView。
2)您不能将int设置为textView或任何其他窗口小部件的文本。您需要先使用String.valueOf(count);