亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

江孜县| 兰州市| 太和县| 育儿| 阿巴嘎旗| 曲周县| 离岛区| 达日县| 嘉义县| 镇远县| 进贤县| 乌兰浩特市| 兴仁县| 通许县| 睢宁县| 彰化市| 尖扎县| 横峰县| 香格里拉县| 贺州市| 蕉岭县| 永宁县| 新晃| 西藏| 博乐市| 马尔康县| 长葛市| 中西区| 山丹县| 同德县| 清水县| 高要市| 玉环县| 维西| 永平县| 冷水江市| 府谷县| 政和县| 山阴县| 平远县| 攀枝花市|