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

溫馨提示×

溫馨提示×

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

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

MainActivity端跳轉到Second端的示例分析

發布時間:2022-01-07 21:12:57 來源:億速云 閱讀:136 作者:柒染 欄目:開發技術

這篇文章將為大家詳細講解有關MainActivity端跳轉到Second端的示例分析,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

MainActivity端:一輸入框、一按鈕。輸入內容后,點擊按鈕跳轉到Second端,并顯示輸入內容。

public class MainActivity extends Activity
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
                                      
        /**
         * findViewById()方法返回非空對象的條件:
         * 1) setContentView()先執行
         * 2)id在當前加載的layout中存在
         */
        final EditText edittext = (EditText) findViewById(R.id.editText1);
        Button button = (Button) findViewById(R.id.main_button1);
        button.setOnClickListener(new OnClickListener()
        {
            @Override
            public void onClick(View v)
            {
                Intent intent = new Intent(MainActivity.this, Second.class);// 創建intent,從此處跳轉到另一處
                String username = edittext.getText().toString();
                                              
                intent.putExtra("user", username);// 通過key獲得內容并加入intent
                startActivity(intent);// 啟動Activity
            }
        });
    }
                                  
    @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

Second端:

/**
 * 新增Activity:
 * 1) 創建一個類,繼承Activity
 * 2) 指定內容:重寫onCreate()方法,
 * setContentView()   創建一個layout文件
 * 3) 在Androidmanifest文件中配置Activity
 */
public class Second extends Activity
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second);
              
        Intent intent = getIntent();
        String username = intent.getStringExtra("user");//通過key得到string
        TextView textView = (TextView) findViewById(R.id.textView1);
        textView.setText(username);
    }
}

關于MainActivity端跳轉到Second端的示例分析就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

河源市| 遵义县| 临沧市| 丹凤县| 察雅县| 凤阳县| 米泉市| 贺州市| 冀州市| 普格县| 乌审旗| 公安县| 攀枝花市| 宿迁市| 南华县| 东城区| 滨州市| 象州县| 丁青县| 伊川县| 平江县| 辉县市| 灵璧县| 定兴县| 神木县| 大竹县| 衡阳县| 莱西市| 平山县| 长宁县| 枞阳县| 历史| 安龙县| 五河县| 香港| 广安市| 阿城市| 华池县| 平潭县| 余庆县| 喀喇|