我的应用程序一直崩溃,我不知道是什么导致了这一点。应用程序构建,但在模拟器中不断崩溃。
我尝试更改MainActivity
,但仍然无效。
主要Activity.java
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button btLogout;
EditText etName, etPSN;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
etName = (EditText) findViewById(R.id.etName);
etPSN = (EditText) findViewById(R.id.etPSN);
btLogout = (Button) findViewById(R.id.btLogout);
btLogout.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.btLogout:
break;
default : break;
}
}
}
activity_main.xml中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="Name"/>
<EditText
android:id="@+id/etName"
android:layout_width="match_parent"
android:layout_marginBottom="20dp"
android:layout_height="40dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="PSN"/>
<EditText
android:id="@+id/etPSN"
android:layout_width="match_parent"
android:layout_marginBottom="20dp"
android:layout_height="40dp" />
<Button
android:id="@+id/btLogout"
android:text="Logout"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textAlignment="gravity"
android:gravity="center|center_vertical"
android:textSize="20dp"
android:textStyle="bold"
android:capitalize="characters" />
</LinearLayout>
答案 0 :(得分:0)
你必须使用
setContentView(R.layout.activity_main);
相反
setContentView(R.layout.activity_login);