【发布时间】:2014-02-15 07:15:26
【问题描述】:
我正在开发一个应用程序,我有以下代码:
package com.S.A.Productions.android.first;
import com.S.A.Productions.android.first.R;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
public class FirstActivity extends Fragment implements OnClickListener {
int counter;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
super.onCreate(savedInstanceState);
View v = inflater.inflate(R.layout.lin, container, false);
TextView temp = (TextView) v.findViewById(R.id.textView2);
//Set the buttons
Button button2 = (Button) v.findViewById(R.id.button2);
//+++ BUTTON
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub//Get content of TextView
TextView temp = (TextView) v.findViewById(R.id.textView2);
//Convert the string to an integer
counter = Integer.parseInt(temp.getText().toString());
counter++;
temp.setText("" + counter);
String stringData = temp.getText().toString();
SharedPreferences.Editor editor = someData.edit();
editor.putString("sharedString", stringData);
editor.commit();
}
});
//END OF +++ BUTTON
return v;
}
}
但是当我运行应用程序并单击该按钮时,应用程序崩溃了。 我正在使用“v.findViewById” 最后我返回 v。所以我不知道到底出了什么问题。 有什么想法吗?
【问题讨论】:
-
您可以发布跟踪和您的布局 lin xml 吗?
标签: java android button onclick android-inflate