1. 程式人生 > 其它 >第七次

第七次

1.三個介面,介面1點選按鈕使用顯式意圖開啟介面2.
介面2點選按鈕隱式意圖開啟介面3

<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"
    tools:context=".MainActivity"
    android:orientation
="vertical" > <Button android:id="@+id/btn1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="顯式意圖開啟介面2" android:onClick="click1" /> <Button android:id="@+id/btn2" android:layout_width
="wrap_content" android:layout_height="wrap_content" android:text="隱式意圖開啟介面3" android:onClick="click2" /> <Button android:id="@+id/btn3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="開啟瀏覽器訪問百度"
android:onClick="click3" /> </LinearLayout>
<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" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="介面2" />

</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=".ThirdActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="介面3" />

</RelativeLayou
package com.example.myapplication;
 
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;
 
public class MainActivity extends Activity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Log.e("MainActivity", "呼叫oncreate");//在logcat裡輸出,標籤為MainActivity,提示資訊為呼叫oncreate
 
    }
 
    @Override
    protected void onStart() {
        // TODO Auto-generated method stub
        super.onStart();
        Log.e("MainActivity", "呼叫onstart");
    }
    @Override
    protected void onResume() {
        // TODO Auto-generated method stub
        super.onResume();
        Log.e("MainActivity", "呼叫onresume");
    }
    @Override
    protected void onPause() {
        // TODO Auto-generated method stub
        super.onPause();
        Log.e("MainActivity", "呼叫onpause");
    }
 
    @Override
    protected void onStop() {
        // TODO Auto-generated method stub
        super.onStop();
        Log.e("MainActivity", "呼叫onstop");
    }
 
    @Override
    protected void onDestroy() {
        // TODO Auto-generated method stub
        super.onDestroy();
        Log.e("MainActivity", "呼叫ondestroy");
    }
 
    @Override
    protected void onRestart() {
        // TODO Auto-generated method stub
        super.onRestart();
        Log.e("MainActivity", "呼叫onRestart");
    }
 
    //使用顯式意圖開啟介面2(一般同一個應用程式 用顯式意圖)
    public void click1(View view){
        Intent intent=new Intent(this,SecondActivity.class);
        startActivity(intent);
 
    }
 
    //使用隱式意圖開啟介面3(不同應用程式,用隱式意圖,例如開啟瀏覽器、手機照相機等)
    public void click2(View view){
        Intent intent=new Intent();
        intent.setAction("cn.itcast.START_ACTIVITY");
        startActivity(intent);
    }
 
    public void click3(View view){
        Intent intent=new Intent();
        intent.setAction("android.intent.action.VIEW");
        intent.setData(Uri.parse("http://www.baidu.com"));
        startActivity(intent);
 
    }
 
 
}
package com.example.myapplication;
 
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
 
public class SecondActivity extends AppCompatActivity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);
 
 
    }
}
package com.example.myapplication;
 
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
 
public class ThirdActivity extends AppCompatActivity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_third);
 
    }
}

<?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"
    android:background="#F7DDFC"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/bt_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#77DDEB"
        android:text="顯式意圖開啟介面2"
        android:textSize="20sp"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"/>
    <Button
        android:id="@+id/bt_3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#56AEF5"
        android:text="開啟瀏覽器訪問百度"
        android:textSize="20sp"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"
        android:padding="10dp"
        android:onClick="click3"/>

</LinearLayout>
package com.example.homework12;
 
import androidx.appcompat.app.AppCompatActivity;
 
import android.content.Intent;
import android.net.Uri;
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);
            }
        });
    }
    public void click3(View view){
        Intent intent=new Intent();
        intent.setAction("android.intent.action.VIEW");
        intent.setData(Uri.parse("http://www.baidu.com"));
        startActivity(intent);
    }
}

3.2個edittext,4個按鈕一個textview,實現簡單計算器。

提示1:如何獲取edittext上的資料?
String num1=((EditText)(findViewById(R.id.et1))).getText().toString();//獲取et1上面的文字,並
轉成字串
提示2:字串如何轉int
int n1=Integer.parseInt(num1);
提示3:如何把計算結果顯示在textview上?
TextView tv1=(TextView)findViewById(R.id.tv1);//獲取控制元件
tv1.setText("1233213");//用settext方法賦值

<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=".Main4Activity" >
    <TextView
        android:id="@+id/tv1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="計算器"
        android:gravity="center"
        android:textSize="30dp"
        android:layout_margin="5dp"/>
    <EditText
        android:id="@+id/et_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="請輸入一個數"
        android:textSize="30dp"
        android:layout_marginTop="70dp"/>
    <EditText
        android:id="@+id/et_2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="請輸入一個數"
        android:textSize="30dp"
        android:layout_below="@id/et_1"/>
    <Button
        android:id="@+id/b_1"
        android:layout_width="70dp"
        android:layout_height="50dp"
        android:text="+"
        android:textSize="30dp"
        android:background="#226DDD"
        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="30dp"
        android:background="#226DDD"
        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="30dp"
        android:background="#226DDD"
        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="30dp"
        android:background="#226DDD"
        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="30dp"
        android:text="結果是"
        android:layout_marginTop="300dp"
        android:layout_marginLeft="10dp"/>

</RelativeLayout>
package com.example.myapplication;
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);
            }
        } );
    }}