嗨,大家好我2天前就开始学习android开发了。所以试用了一个基本的应用程序来增加和减少。 一切都还可以,但是当我甚至在模拟器上测试应用程序时,我收到一条消息"不幸的是,应用程序" 我尝试调试代码,发现即使声明了一个语句findViewById(),我的变量也指向null。我认为这就是造成这个错误的原因..继承我的代码,在MainActivity.java中。请帮帮我!
public class MainActivity extends ActionBarActivity {
/* Your original code */
/*
TextView sum;
Button increment;
Button decrement;
*/
int total;
/* My interpretation */
protected static TextView sum;
protected static Button increment;
protected static Button decrement;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.findViewById();
total = 0;
increment.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
total++;
sum.setText("Sum is "+total);
}
});
decrement.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
total--;
sum.setText("Sum is "+total);
}
});
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
}
/* Your original code (moved to fragment) */
/*
private void findViewById() {
sum = (TextView) findViewById(R.id.tv); // sum points to null
increment = (Button) findViewById(R.id.inc); //increment points to null
decrement = (Button) findViewById(R.id.dec); // decrement points to null
}
*/
编辑::
占位符片段::
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
/* added */
Context ctx = null;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView;
rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
/* added */
init();
}
/* added */
private void init()
{
final View v = getView();
ctx = getActivity().getApplicationContext();
MainActivity.sum = (TextView) v.findViewById(R.id.tv); // sum points to null
MainActivity.increment = (Button) v.findViewById(R.id.inc); //increment points to null
MainActivity.decrement = (Button) v.findViewById(R.id.dec); // decrement points to null
}
}
这是布局::
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context="com.vishal.Simplecalc.MainActivity$PlaceholderFragment">
<TextView
android:id="@+id/tv"
android:text="@string/sumView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30sp"
android:layout_gravity="center"
tools:context=".MainActivity"
/>
<Button
android:id="@+id/inc"
android:text="@string/inc"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:textSize="30sp"
android:layout_gravity="center"
android:textStyle="bold"
tools:context=".MainActivity"
/>
<Button
android:id="@+id/dec"
android:text="@string/dec"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:textSize="30sp"
android:layout_gravity="center"
android:textStyle="bold"
tools:context=".MainActivity"
/>
</LinearLayout>
答案 0 :(得分:1)
在这里猜测(你没有为xml布局添加名称)。
我猜你可能会混淆你的布局,只是发布了fragment_main.xml
实际上有你的代码相信要保存在activity_main
中的内容,这导致你的代码在你的时候返回空值'重新分配findViewById()
答案 1 :(得分:0)
我认为问题在于PlaceholderFragment正在设置新的布局,并且不允许更改文本。
答案 2 :(得分:0)
有时可能是因为模拟器,创建新模拟器或使用真实设备进行尝试。