------------恢复内容开始------------
1.三个界面,界面1点击按钮使用显式意图开启界面2.
界面2点击按钮隐式意图开启界面3
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <Button android:id="@+id/bt_1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#F2B4FC" android:text="显示意图开启界面2" android:textSize="20sp" android:textColor="#000000" android:layout_marginTop="20dp" android:layout_marginLeft="10dp"/> </LinearLayout>
import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button btn1=(Button)findViewById(R.id.bt_1); btn1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent intent=new Intent(MainActivity.this,Main2Activity.class); startActivity(intent); } }); } }
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".Main2Activity"> <Button android:id="@+id/bt_2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#EEA6BF" android:text="隐式意图开启界面3" android:textSize="20sp" android:textColor="#000000" android:layout_marginLeft="10dp" android:layout_marginTop="20dp"/> </LinearLayout>
import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; public class Main2Activity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main2); Button btn2=(Button)findViewById(R.id.bt_2); btn2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent intent=new Intent(); intent.setAction("com.ym.second"); startActivity(intent); } }); } }
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#A5D4FA" tools:context=".Main3Activity"> <TextView android:id="@+id/tv_1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="界面3" android:textSize="20sp" android:layout_centerInParent="true" android:textColor="#000000"/> </RelativeLayout>
<activity android:name=".Main3Activity"> <intent-filter> <action android:name="com.ym.second" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> <activity android:name=".Main2Activity" > </activity> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
2.在界面1做一个按钮开启浏览器访问百度
import android.net.Uri; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button bt1=(Button)findViewById(R.id.bt1); Button bt2=(Button)findViewById(R.id.bt2); bt1.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent intent=new Intent(MainActivity.this,Main2Activity.class); startActivity(intent); } }); } public void click2(View view){ Intent intent=new Intent(); intent.setAction("android.intent.action.VIEW"); intent.setData(Uri.parse("http://www.baidu.com")); startActivity(intent); } }
import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class Main2Activity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main2); Button bt2=(Button)findViewById(R.id.bt2); bt2.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent intent=new Intent(); intent.setAction("com.JBY.start"); intent.addCategory("android.intent.category.DEFAULT"); startActivity(intent); } }); } }
import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class Main3Activity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main3); } }
<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/bt1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="开启界面二" /> <Button android:id="@+id/bt2" android:onClick="click2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="开启百度" android:layout_below="@id/bt1" /> </RelativeLayout>
<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=".Main2Activity" > <Button android:id="@+id/bt2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="开启界面三" /> </RelativeLayout>
<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=".Main3Activity" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="hello_world" /> </RelativeLayout>
3.2个edittext,4个按钮一个textview,实现简单计算器。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="match_parent" android:layout_width="match_parent"> <TextView android:id="@+id/tv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="计算器" android:gravity="center" android:textSize="25dp" android:layout_margin="5dp"/> <EditText android:id="@+id/et_1" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="请输入一个数" android:textSize="25dp" android:layout_marginTop="70dp"/> <EditText android:id="@+id/et_2" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="请输入一个数" android:textSize="25dp" android:layout_below="@id/et_1"/> <Button android:id="@+id/b_1" android:layout_width="70dp" android:layout_height="50dp" android:text="+" android:textSize="25dp" android:background="#AAA898" android:layout_marginTop="200dp" android:layout_marginLeft="22dp"/> <Button android:id="@+id/b_2" android:layout_width="70dp" android:layout_height="50dp" android:text="-" android:textSize="25dp" android:background="#AAA898" android:layout_toRightOf="@id/b_1" android:layout_marginTop="200dp" android:layout_marginLeft="10dp"/> <Button android:id="@+id/b_3" android:layout_width="70dp" android:layout_height="50dp" android:text="*" android:textSize="25dp" android:background="#AAA898" android:layout_toRightOf="@id/b_2" android:layout_marginTop="200dp" android:layout_marginLeft="10dp"/> <Button android:id="@+id/b_4" android:layout_width="70dp" android:layout_height="50dp" android:text="/" android:textSize="25dp" android:background="#AAA898" android:layout_toRightOf="@id/b_3" android:layout_marginTop="200dp" android:layout_marginLeft="10dp"/> <TextView android:id="@+id/tv2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="25dp" android:text="结果是" android:layout_marginTop="300dp" android:layout_marginLeft="10dp"/> </RelativeLayout>
import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate( savedInstanceState ); setContentView( R.layout.activity_main ); findViewById( R.id.b_1 ).setOnClickListener( new View.OnClickListener() { @Override public void onClick(View view) { String num1=((EditText)(findViewById( R.id.et_1 ))).getText().toString(); String num2=((EditText)(findViewById( R.id.et_2 ))).getText().toString(); int n1= Integer.parseInt( num1 ); int n2=Integer.parseInt( num2 ); int sum=n1+n2; TextView tv1=findViewById( R.id.tv2 ); tv1.setText( "结果是"+sum ); } } ); findViewById( R.id.b_2 ).setOnClickListener( new View.OnClickListener() { @Override public void onClick(View view) { String num1=((EditText)(findViewById( R.id.et_1 ))).getText().toString(); String num2=((EditText)(findViewById( R.id.et_2 ))).getText().toString(); int n1=Integer.parseInt( num1 ); int n2=Integer.parseInt( num2 ); int sum=n1-n2; TextView tv1=findViewById( R.id.tv2 ); tv1.setText("结果是"+sum); } } ); findViewById( R.id.b_3 ).setOnClickListener( new View.OnClickListener() { @Override public void onClick(View view) { String num1=((EditText)(findViewById( R.id.et_1 ))).getText().toString(); String num2=((EditText)(findViewById( R.id.et_2 ))).getText().toString(); int n1=Integer.parseInt( num1 ); int n2=Integer.parseInt( num2 ); int sum=n1*n2; TextView tv1=findViewById( R.id.tv2 ); tv1.setText("结果是"+sum); } } ); findViewById( R.id.b_4 ).setOnClickListener( new View.OnClickListener() { @Override public void onClick(View view) { String num1=((EditText)(findViewById( R.id.et_1 ))).getText().toString(); String num2=((EditText)(findViewById( R.id.et_2 ))).getText().toString(); int n1=Integer.parseInt( num1 ); int n2=Integer.parseInt( num2 ); int sum=n1*n2; TextView tv1=findViewById( R.id.tv2 ); tv1.setText("结果是"+sum); } } ); findViewById( R.id.b_4).setOnClickListener( new View.OnClickListener() { @Override public void onClick(View view) { String num1=((EditText)(findViewById( R.id.et_1 ))).getText().toString(); String num2=((EditText)(findViewById( R.id.et_2 ))).getText().toString(); int n1=Integer.parseInt( num1 ); int n2=Integer.parseInt( num2 ); int sum=n1/n2; TextView tv1=findViewById( R.id.tv2 ); tv1.setText("结果是"+sum); } } ); } }
------------恢复内容结束------------