我正在创建一个简单的应用程序,其中上下文视图更改,然后一个toast消息显示为用户给出的输入。我不明白为什么应用程序在更改上下文视图时会继续崩溃。
此外,Android工作室也发出此警告:
“FirstActivity”中缺少方法“Toaster”或签名不正确。
这是我的代码:
activity_me_clicked.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/welcome"
android:textSize="36sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:paddingLeft="7dp"
android:paddingRight="7dp"
android:text="@string/intro"
android:textSize="24sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:baselineAligned="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<EditText
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="7dp"
android:layout_marginEnd="7dp"
android:layout_marginTop="10dp"
android:ems="10"
android:hint="Name"
android:inputType="textPersonName"
tools:ignore="HardcodedText" />
<Button
android:id="@+id/named"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:onClick="MainProcess"
android:text="@string/done" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal"
tools:ignore="UselessLeaf"></LinearLayout>
</LinearLayout>
</LinearLayout>
FirstActivity.Java :
package com.example.nautatvanavlakha.abcd;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class FirstActivity extends AppCompatActivity {
public static String owner_string;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_me_clicked);
}
public void MainProcess(View view) {
final String TAG="DEBUG";
Log.d(TAG,"At least process started");
EditText owner = (EditText) findViewById(R.id.name);
owner_string = owner.getText().toString();
Log.d(TAG,"owner name stored");
TextView textView = (TextView) findViewById(R.id.welcome);
textView.setText("Hi " + owner_string + ".");
Log.d(TAG,"owner name is set");
setContentView(R.layout.activity_main_screen);
Log.d(TAG,"content shown");
}
}
activity_main_screen.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/welcome"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/what_would_you_like_me_to_do_today"
android:textSize="18sp" />
<Button
android:id="@+id/Cam"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:padding="0dp"
android:paddingTop="15dp"
android:text="@string/camera" />
<Button
android:id="@+id/Mus"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:padding="0dp"
android:paddingTop="15dp"
android:text="@string/music" />
<Button
android:id="@+id/QR"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:padding="0dp"
android:paddingTop="15dp"
android:text="@string/scanQR" />
<EditText
android:id="@+id/toastText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/order"
android:inputType="textPersonName" />
<Button
android:id="@+id/toaster"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:onClick="toaster"
android:padding="0dp"
android:paddingTop="15dp"
android:text="@string/toast"
android:layout_marginEnd="100dp"
android:layout_gravity="center"/>
</LinearLayout>
MainScreen.java :
package com.example.nautatvanavlakha.abcd;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
public class MainScreen extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main_screen);
}
public void toaster(View view){
EditText toast = (EditText)findViewById(R.id.toastText);
String final_toast = toast.getText().toString();
Toast.makeText(getApplicationContext(), final_toast, Toast.LENGTH_SHORT).show();
}
}
编辑:根据建议,我将toaser函数移动到FirstActivity.Java并删除了MainScreen.java文件,因为保留它变得毫无意义。但主要的问题是当我按下按钮(id命名)时,应用程序会一直停止。
EDIT2:我发现 FirstActivity.Java 中的 setContentView(R.layout.activity_main_screen)需要高于此代码
TextView textView = (TextView) findViewById(R.id.welcome); textView.setText("Hi " + owner_string + "."); Log.d(TAG,"owner name is set");
以便Activity可以访问所有布局组件。 谢谢已解决:)
答案 0 :(得分:1)
您使用包含onClick
属性的布局替换了第一个活动中的内容视图,但您没有public void toaster(View view)
方法。
因此,要么第二次不使用setContentView
,要么在两个活动上实施该方法。
顺便说一句,推荐的替换视图的方法是片段
答案 1 :(得分:0)
这是更改Activity内容的错误方法,这里的主要问题是你将onClick属性设置为&#34;多士炉&#34;,而你没有一个名为&#的函数34;烤面包机&#34;在你的FirstActivity中。
除此之外,您的代码中的MainScreen Activity将永远不会被使用。
所以,你的问题是你将FirstActivity内容设置为&#34; activity_main_screen.xml&#34;,并且FirstActivity没有&#34;多士炉&#34;其中的方法,当您更改上下文时,活动将尝试查找烤面包机方法,应用程序将崩溃,因为该方法在FirstActivity中不存在。
你可以通过制作一个名为&#34; toaster&#34;的方法来解决这个问题。在FirstActivity里面,但是 这是一个非常糟糕的做法,您可以使用Fragments,或者您可以使用Intent移动到另一个活动。
有关碎片的一些有用链接:
https://developer.android.com/guide/components/fragments.html
https://www.tutorialspoint.com/android/android_fragments.htm
https://examples.javacodegeeks.com/android/core/app/fragment/android-fragments-example/