我是新的android編程,我有一個問題。我使用Eclipse,我創建了一個切換按鈕,但在圖形佈局中沒有顯示任何內容,它向我展示了這個「在渲染期間引發的異常:-1」。我能做什麼?我在我的代碼下面發佈我已經使用過的代碼。Android圖形佈局不顯示切換按鈕
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="25dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/etCommands"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Type a Command"
android:password="true" />
<LinearLayout
android:weightSum="100"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_weight="20"
android:id="@+id/bResults"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Try Command" />
<ToggleButton
android:layout_weight="80"
android:paddingBottom="10dp"
android:checked="true"
android:id="@+id/tbPassword"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="ToggleButton" />
</LinearLayout>
<TextView
android:id="@+id/tvResults"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="invalid" />
你可以發佈整個XML? – Dara 2015-02-10 16:25:48