嗨,我是android prgramming的新手,所以我写这个简单的代码只是为了试试, 它在android工作室模拟器中运行得很好但是当我使用build apk和 在我的手机上手动安装应用程序它崩溃当我点击按钮我尝试在几个手机与Android 7,Android 5和andorid 4.4都给了我相同的结果。 我使用android studio 3.0和最小的api我使用android 4.0.3这个项目。可能是什么问题。
package com.example.adem.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
void tst(View v) {
TextView t= this.findViewById(R.id.temo);
t.setText("he");
}
}
XML文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.adem.myapplication.MainActivity">
<TextView
android:id="@+id/temo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="168dp"
android:layout_marginTop="164dp"
android:text="Button"
android:onClick="tst"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:0)
谢谢你们的回复,我发现问题是我没有将功能tst设置为公开 这个解决方案
public void tst(View view){
TextView t= this.findViewById(R.id.temo);
t.setText("he");
}