4

我有一个已发布的应用程序,它得到了一些奇怪的用户反馈。因此,对于堆栈跟踪,在尝试调用Toast show()方法时出现了膨胀错误。堆栈如下:

android.view.InflateException: Binary XML file line #21: Error inflating class <unknown>
at android.view.LayoutInflater.createView(LayoutInflater.java:596)
at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
at android.view.LayoutInflater.onCreateView(LayoutInflater.java:644)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:669)
at android.view.LayoutInflater.inflate(LayoutInflater.java:457)
at android.view.LayoutInflater.inflate(LayoutInflater.java:391)
at android.view.LayoutInflater.inflate(LayoutInflater.java:347)
at android.widget.Toast.makeText(Toast.java:247)
at my.app.name.Launcher$ActionDecider.onPostExecute(Launcher.java:155)

在第 155 行,我只调用了 Toast 的 show():

Toast.makeText(LauncherAct.getContext(), "Some random string here", Toast.LENGTH_SHORT).show();

有人知道它可能是什么吗?

4

1 回答 1

0

我有同样的问题。突然,我的 Toast 调用开始出现此错误Binary XML file line #21: Error inflating class。我在同一方法中再次调用我的方法,直到从网络提供商获得所需的 gps 值。当我删除自己的回忆时,问题就消失了。我没有得到他们之间的关系,但那有效。

public void getLocation()
{
    if(gps.canGetLocation())
    {
        latitude = gps.latitude;
        longitude = gps.longitude;
        if((latitude < 0) || (longitude < 0))
        {
            Toast.makeText(CharityGPS.this, "Konumunuz saptanıyor lütfen bekleyiniz.", Toast.LENGTH_SHORT).show();
            getLocation(); //recalling is here. when I remove it, problem has gone.
        }
        else
        {

           ...
        }
}

希望这可以帮助。

于 2016-04-07T11:04:20.363 回答