2012-05-15 110 views
2

這是我的代碼,併發送了我一個錯誤(致命異常:主),我想幫助我非常感謝你致命異常:主要的Android的Eclipse

這裏是Activity.java

我的代碼
package hola.mundo; 

import android.app.Activity; 
import android.os.Bundle; 

public class HolaActivity extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 
    } 
} 

這裏我從main.xml中

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

    <EditText android:id="@+id/edit_message" 
     android:layout_weight="1" 
     android:layout_width="0dp" 
     android:hint="@string/edit_message" /> 

    <Button android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/button_send"/> 

</LinearLayout> 

和strings.xml中

<?xml version="1.0" encoding="utf-8"?> 
<resources> 

    <string name="app_name">Hola</string> 
    <string name="edit_message">Enter a Message</string> 
    <string name="button_send">Send</string> 

</resources> 
代碼

PLZ有人能幫助我

+0

粘貼你的錯誤日誌。 –

回答

4

你沒有layout_heightedit_message定義(而不是你有:layout_weight)。此外,您的佈局可能不會像您所期望的那樣,但這是另一個問題(並且取決於您現在忽略的要求)。