在第二次活动中向textview
显示值时,错误为
期望成员声明
这是我的另一项活动代码:
package com.example.trial.sudoku_solver
import android.app.AlertDialog
import android.content.Intent
import android.graphics.Bitmap
import android.media.MediaScannerConnection
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.os.Environment
import android.provider.MediaStore
import android.text.Editable
import android.util.Log
import android.view.View
import android.widget.*
import com.example.trial.sudoku_solver.R
import kotlinx.android.synthetic.main.activity_main.view.*
import java.io.ByteArrayOutputStream
import java.io.File
import java.io.FileOutputStream
import java.io.IOException
import java.util.*
import kotlinx.android.synthetic.main.activity_main.*
import org.w3c.dom.Text
class AnotherActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_another)
}
var a: String = intent.getStringExtra("text")
val text1: TextView = findViewById(R.id.textview) as TextView
text1.text = intent.getStringExtra("text")
}
这是我在MainActivity中该函数的部分代码
private fun clickText() {
val text1: EditText = findViewById(R.id.editText)
if (text1 != null) {
//Toast.makeText(this, text1.text, Toast.LENGTH_LONG).show()
var text1 = text1.editText.toString()
val intent = Intent(this, AnotherActivity::class.java)
intent.putExtra("text",text1)
startActivity(intent);
}
}
答案 0 :(得分:0)
在Activity
中没有settext方法。您应该这样将文本字符串设置为TextView
:
var a: String = intent.getStringExtra("text")
val text1 = findViewById(R.id.textview) as TextView
text1.text = a
此外,当您使用kotlin编写代码时,没有必要在活动中使用findViewById。由于具有合成属性,可以通过xml文件中的ID来访问视图。因此,您的三行代码可以按以下方式替换:
textview.text = intent.getStringExtra("text")
还将MainActivity中的代码块更改为:
private fun clickText() {
val editText1: EditText = findViewById(R.id.editText)
if (editText1 != null) {
//Toast.makeText(this, text1.text, Toast.LENGTH_LONG).show()
var text1 = editText1.text.toString()
val intent = Intent(this, AnotherActivity::class.java)
intent.putExtra("text", text1)
startActivity(intent);
}
}
答案 1 :(得分:0)
最简单的方法:
Intent intent = new Intent(getBaseContext(), Activity2.class);
intent.putExtra("ID", sId);
startActivity(intent);
访问下一个活动的意图
String sId= getIntent().getStringExtra("ID");
希望这对您有帮助
答案 2 :(得分:0)
8您需要先致电intent
,findViewById
和setText
,然后再致电setContentView
:
class AnotherActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_another)
var a: String = intent.getStringExtra("text")
val text1: TextView = findViewById(R.id.textview) as TextView
text1.text = intent.getStringExtra("text")
}
}
答案 3 :(得分:0)
您需要在onCreate方法块中添加这些代码
您应该在方法内部添加可执行语句。
所以代码将如下所示:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_another)
// add these statement inside onCreate block
var a: String = intent.getStringExtra("text")
val text1: TextView = findViewById(R.id.textview) as TextView
text1.text = intent.getStringExtra("text")
}