漫画加载,频道管理(SecondActivity)

来源:互联网 发布:淘宝新店流量扶持 编辑:程序博客网 时间:2024/05/16 08:01
package com.example.zoukao3;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.support.annotation.Nullable;import android.widget.ImageView;import android.widget.TextView;/** * Created by dell on 2017/8/18. */public class SecondActivity extends Activity {    private TextView textsec;    private ImageView image;    @Override    protected void onCreate(@Nullable Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.secondactivity);        textsec = (TextView) findViewById(R.id.textsec);        Intent intent = getIntent();        String exter = intent.getStringExtra("exter");        textsec.setText(exter);    }}
原创粉丝点击