0

这是 XML 文件。奇怪的是我的程序在执行 setContentView 后立即退出。logcat 只显示了这个

线程 id=1 线程以未捕获的异常退出 (group=0x417d)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">


  <TextView android:id="@+id/SpeechResult"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:background="@drawable/rounded_edge"
    android:padding="6dip"
    android:hint="Waht is on your mind?"/>

  <ToggleButton
    android:id="@+id/ToggleRecognition"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:textOff="Start"
    android:textOn="Stop"
    android:onClick="onToggleRecognition"/>

</LinearLayout>
4

1 回答 1

1

我找到了调整,这真的很令人困惑,我认为 eclipse 至少应该有一些调试信息,因为这真的很吸引人。该问题与 TextView 中缺少 layout_width 属性有关。不知道为什么这会导致崩溃,但至少添加它会产生魔法

于 2013-10-13T07:57:47.477 回答