我在这里宣布b1,b2,b3 ...... if(savedInstanceState == null){}
getFragmentManager().beginTransaction() .add(R.id.container, new PlaceholderFragment(
)).commit();
// Definiranje botuna
b1 = (Button) findViewById(R.id.broj1);
b2 = (Button) findViewById(R.id.broj2);
b3 = (Button) findViewById(R.id.broj3);
b4 = (Button) findViewById(R.id.broj4);
b5 = (Button) findViewById(R.id.broj5);
b6 = (Button) findViewById(R.id.broj6);
b7 = (Button) findViewById(R.id.broj7);
b8 = (Button) findViewById(R.id.broj8);
b9 = (Button) findViewById(R.id.broj9);
b0 = (Button) findViewById(R.id.broj0);
bPlus = (Button) findViewById(R.id.plus);
bMinus = (Button) findViewById(R.id.minus);
bPuta= (Button) findViewById(R.id.puta);
bDjeljeno = (Button) findViewById(R.id.djeljeno);
bKvadrat = (Button) findViewById(R.id.kvadrat);
bIzracunaj = (Button) findViewById(R.id.izracunaj);
//Definiranje polja
text1 = (TextView) findViewById(R.id.polje1);
text2 = (TextView) findViewById(R.id.polje2);
text3 = (TextView) findViewById(R.id.polje3);
b1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
text1.setText("1");
}}
);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container,
false);
return rootView;
}
}
@Override
public void onClick(View v) {
}
}
当我删除OnclickListener我的应用程序工作正常,我吓坏了。差不多两天我试图找到我做错了什么,但一切似乎都适合我。当我引用edittext或textview(类似.getText之类的东西)时,它不仅仅是onclicklistener。我只是不知道该怎么做。我的setContentView正在引用正确的活动我三重检查它,如果有人知道我做错了什么请帮助:s
这是我的整个xml
.
.
.
<LinearLayout
android:id="@+id/linear"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:id="@+id/polje1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:hint=" "
android:height="30dp"
/>
<TextView
android:id="@+id/polje2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:hint=" "
android:height="30dp"
/>
<TextView
android:id="@+id/polje3"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:hint=" "
android:height="30dp"
/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="3" >
<Button
android:id="@+id/broj1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_weight="1"
android:text="1"
android:textStyle="bold"
/>
<Button
android:id="@+id/broj2"
android:text="2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:textStyle="bold"
/>
<Button
android:id="@+id/broj3"
android:text="3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="right"
android:textStyle="bold"
/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="3" >
<Button
android:id="@+id/broj4"
android:text="4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="right"
android:textStyle="bold"
/>
<Button
android:id="@+id/broj5"
android:text="5"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:textStyle="bold"
/>
<Button
android:id="@+id/broj6"
android:text="6"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="left"
android:textStyle="bold"
/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="3" >
<Button
android:id="@+id/broj7"
android:text="7"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="right"
android:textStyle="bold"
/>
<Button
android:id="@+id/broj8"
android:text="8"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:textStyle="bold"
/>
<Button
android:id="@+id/broj9"
android:text="9"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="left"
android:textStyle="bold"
/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="3" >
<Button
android:id="@+id/broj0"
android:text="0"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="right"
android:textStyle="bold"
/>
<Button
android:id="@+id/plus"
android:text="+"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:textStyle="bold"
/>
<Button
android:id="@+id/minus"
android:text="-"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="left"
android:textStyle="bold"
/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="3" >
<Button
android:id="@+id/puta"
android:text="*"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="right"
android:textStyle="bold"
/>
<Button
android:id="@+id/djeljeno"
android:text="/"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:textStyle="bold"
/>
<Button
android:id="@+id/kvadrat"
android:text="x²"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="left"
android:textStyle="bold"
/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="3" >
<Button
android:id="@+id/izracunaj"
android:text="IZRACUNAJ"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:0)
您将代码包含在
中if(savedInstanceState == null){
}
这不是你应该在onCreate中声明变量的地方。那是你应该恢复活动状态的地方。
如果您不需要恢复状态,则可以完全删除此项检查。否则,将所有代码移出与恢复状态无关的块。
修改强>
我看到你正在为你的Activity添加一个片段,但是,你似乎正在做你活动中的大部分任务。那是你想要做的吗?
答案 1 :(得分:0)
进行一些更改,首先在savedInstanceState条件之外找到您的视图:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button b1 = (Button) findViewById(R.id.broj1);
TextView e1 = (TextView) findViewById(R.id.polje1);
// other views
}
<强>更新强>
删除此行:
getFragmentManager().beginTransaction() .add(R.id.container, new PlaceholderFragment()).commit();
另外,检查activity_main是否为正确的布局,其中包含所有LinearLayout,Buttons,Textviews等。
答案 2 :(得分:0)
你必须将你的对象引用(如Button)从你的IF中删除,因为已保存的实例它不为空,它永远不会引用它。
此代码应该适合您,请记住在主xml上匹配正确的名称:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getFragmentManager().beginTransaction().add(R.id.container, new PlaceholderFragment()).commit();
}
Button b1 = (Button) findViewById(R.id.broj1);
TextView e1 = (TextView) findViewById(R.id.polje1);
b1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
e1.setText("Button 1 Clicked");
}
});
}
测试一下。