91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中Activity和Intent怎么用

發布時間:2021-11-24 11:49:31 來源:億速云 閱讀:145 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關Android中Activity和Intent怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

Android中Activity和Intent怎么用


Android中Activity和Intent怎么用


Android中Activity和Intent怎么用


界面activity_main.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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.activity02.MainActivity" >

    <!--
         <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />
    -->

    <EditText
        android:id="@+id/usernameEditText"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:hint="username"/>

    <Button
        android:id="@+id/myButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:layout_below="@+id/usernameEditText"/>
    
    <Button
        android:id="@+id/sendButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:layout_below="@+id/myButton"/>

</RelativeLayout>

界面otheractivity.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    
    <TextView
        android:id="@+id/myTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        />

</LinearLayout>

MainActivity.java

public class MainActivity extends ActionBarActivity {

	private Button myButton;
	private Button sendButton;
	private EditText usernameEditText;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        myButton = (Button) findViewById(R.id.myButton);
        myButton.setText("傳值");
        
        sendButton = (Button) findViewById(R.id.sendButton);
        sendButton.setText("發短信");
        
        usernameEditText = (EditText) findViewById(R.id.usernameEditText);
        
        myButton.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				
				//Intent intent = new Intent(MainActivity.this, OtherActivity.class);
				Intent intent = new Intent();
				intent.setClass(MainActivity.this, OtherActivity.class);
				String username = usernameEditText.getText().toString();
				intent.putExtra("username", username);
				MainActivity.this.startActivity(intent);
				//startActivity(intent);
			}
		});
        
        sendButton.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				//調用發端信的程序
				Uri uri = Uri.parse("smsto:18513430780");
				Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
				intent.putExtra("sms_body", "The SMS text");
				startActivity(intent);
				
			}
		});
    }

}

OtherActivity.java

public class OtherActivity extends Activity{

	private TextView myTextView;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		Toast.makeText(getApplicationContext(), "click", Toast.LENGTH_SHORT).show();
		setContentView(R.layout.otheractivity);
		myTextView = (TextView) findViewById(R.id.myTextView);
		
		String username = getIntent().getStringExtra("username");
		
		myTextView.setText("傳過來的值是:" + username);
	}
}

感謝各位的閱讀!關于“Android中Activity和Intent怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巴楚县| 温宿县| 岫岩| 吉木萨尔县| 贵德县| 敖汉旗| 衡东县| 修水县| 卫辉市| 莱州市| 杭锦旗| 乌鲁木齐市| 延边| 左云县| 河北区| 高陵县| 庆安县| 沾益县| 安乡县| 垫江县| 沭阳县| 盐池县| 宜黄县| 正宁县| 长阳| 高要市| 南郑县| 高雄县| 乾安县| 易门县| 六盘水市| 浦城县| 汽车| 苏尼特右旗| 维西| 民和| 峡江县| 江华| 枣庄市| 三门县| 东莞市|