問題如上,包我也導(dǎo)入了。package com.example.second;import android.widget.*;import android.app.Activity;import android.os.Bundle;import android.view.Menu;import android.widget.Button;import android.widget.CompoundButton.OnCheckedChangeListener;public class MainActivity extends Activity {? ?? private Button loginButton;? ? @Override? ? protected void onCreate(Bundle savedInstanceState) {? ? ? ? super.onCreate(savedInstanceState);? ? ? ? setContentView(R.layout.activity_main);? ? ? ? loginButton=findViewById(R.id.button1);? ? ? ??? ? ? ??? ? ? ??? ? }? ? @Override? ? public boolean onCreateOptionsMenu(Menu menu) {? ? ? ? // Inflate the menu; this adds items to the action bar if it is present.? ? ? ? getMenuInflater().inflate(R.menu.activity_main, menu);? ? ? ? return true;? ? }? ??}xml如下<RelativeLayout 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"? ? tools:context=".MainActivity" >? ? <Button? ? ? ? android:id="@+id/button1"? ? ? ? android:layout_width="wrap_content"? ? ? ? android:layout_height="wrap_content"? ? ? ? android:layout_alignParentLeft="true"? ? ? ? android:layout_alignParentTop="true"? ? ? ? android:text="Button" /></RelativeLayout>
添加回答
舉報(bào)
0/150
提交
取消