2012-05-08 59 views
0

如何在數組中有空格時打開新的意圖(例如「Hello World」)我試圖訪問的類叫做startingPoint。Android ListActivity新增意圖問題(增加空間)

它給我,不能有任何空格內的錯誤 - >機器人:名字=「」

有什麼解決方法嗎?

在此先感謝

Root.java

public class Root extends ListActivity { 

String classes[] = { "Hello World", "Another Item", "Email"}; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    // TODO Auto-generated method stub 
    super.onCreate(savedInstanceState); 

    setListAdapter(new ArrayAdapter<String>(Root.this, 
      R.layout.root, classes)); 
} 

@Override 
protected void onListItemClick(ListView l, View v, int position, long id) { 
    // TODO Auto-generated method stub 
    super.onListItemClick(l, v, position, id); 
    String MENU_CHOICE = classes[position]; 
    try { 
     Class ourClass = Class.forName("se.hello.visboken." + MENU_CHOICE); 
     Intent ourIntent = new Intent(Root.this, ourClass); 
     startActivity(ourIntent); 
    } catch (ClassNotFoundException e) { 
     e.printStackTrace(); 
    } 
} 
} 

我的清單看起來像這樣

<activity 
     android:name=".Splash" 
     android:label="@string/app_name" > 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <activity 
     android:name=".Root" 
     android:label="@string/app_name"> 
     <intent-filter> 
      <action android:name="se.hello.visboken.ROOT" /> 

      <category android:name="android.intent.category.DEFAULT" /> 
     </intent-filter> 
    </activity> 
    <activity 
     android:name=".startingPoint" 
     android:label="Hello World" > 
     <intent-filter> 
      <action android:name="se.hello.visboken.startingPoint" /> 

      <category android:name="android.intent.category.DEFAULT" /> 
     </intent-filter> 
    </activity> 
</application> 

回答

0

在你的情況,你需要啓動的活動是startingPointHello WorldHello World是該活動的標題。


更新:

創建大小相同的另一個字符串數組(必須),但包含在類的名字,而不是頭銜。

String tmp[] = { "startingPoint", "anotherClass1", "anotherClass2"}; 

onListItemClick,如下閱讀:

String MENU_CHOICE = tmp[position]; 
+0

我還是想在listactivity字符串是呈現在屏幕上的那些,我想火被調用的意圖在清單中。 – Noxious

+0

然後在'String classes []' – waqaslam

+0

嘗試用** startingPoint **替換** Hello World **如果我這樣做,Hello World將不會在實際手機的listactivity中顯示爲listitem,我仍然希望它在那裏說「Hello World」,但如果它有空格,我不能啓動一個活動。對不起,如果我一開始不清楚。 – Noxious