我正在开始android 4应用程序开发,实际上正在通过一本教我android的书。我是第4章,似乎遇到了一个让我疯狂的问题。我正在创建一个简单的Android应用程序,在复选框列表中显示总统,当您单击按钮时,它将显示您已选择的内容。它没有给我一个机会,因为当我在模拟器上打开应用程序时它会给我错误“Source Not Found”。这是我的应用程序代码。
package net.learn2develop.Basicviews5;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
public class BasicViews5Activity extends ListActivity {
String[] presidents;
/** called when there activity is first created */
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ListView lstView = getListView();
// lstView.setChoiceMode(ListView.CHOICE_MODE_NONE);
//lstView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
lstView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
lstView.setTextFilterEnabled(true);
presidents =
getResources().getStringArray(R.array.presidents_array);
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_checked, presidents));
}
public void onListItemClick(
ListView parent, View v, int position, long id)
{
Toast.makeText(this,
"You have selceted " + presidents[position],
Toast.LENGTH_SHORT).show();
}
public void onClick(View view) {
ListView lstView = getListView();
String itemsSelected = "Selcted items: \n";
for (int i=0; i<lstView.getCount(); i++) {
if (lstView.isItemChecked(i)) {
itemsSelected += lstView.getItemAtPosition(i) + "\n";
}
}
Toast.makeText(this, itemsSelected, Toast.LENGTH_LONG).show();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.basic_views5, menu);
return true;
}
}
这是我调用的main.xml文件的代码。 (或尝试反正。)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".BasicViews5Activity" >
<Button
android:id="@+id/btn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Show selceted items"
android:onClick="onClick" />
<TextView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
这是我的strings.xml文件,它调用要放入列表的总统字符串。
<?xml version="1.0" encoding="utf-8"?>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="app_name">BasicViews5</string>
<string-array name="presidents_array">
<item>Dwight D. Eisenhower</item>
<item>John F. Kennedy</item>
<item>Lyndon B. Johnson</item>
<item>Richard Nixon</item>
<item>Gerald Ford</item>
<item>Jimmy Carter</item>
<item>Ronald Reagen</item>
<item>George H. W. Bush</item>
<item>Bill Clinton</item>
<item>George W. Bush</item>
<item>Barack Obama</item>
</string-array>
</resources>
我真的不知道这里发生了什么。我做了一些调查,我把问题缩小到一行代码。
setContentView(R.layout.main);
我把它拿出来,很好,但是我没有显示你所选内容的按钮。我把它放入并且它变得狂暴,并且说未找到源并且模拟器是空白的。我知道我的帖子很长但是非常感谢您花时间阅读它!您将给予我的任何帮助将不胜感激!
答案 0 :(得分:1)
将评论转换为答案:
您正在呼叫getListView()
,但会向该应用所需的TextView
android:id="@+id/android:list"
提供一个ID。如果您未在xml中声明一个,则只调用getListVivew()
,然后默认情况下会创建ListView
。
更改此行
ListView lstView = getListView();
到
ListView lstView = (ListView) findViewById(R.id.listView);
然后将xml中的TextView
更改为ListView
现在正在寻找具有正确ListView
的{{1}}。如果您想更改外观,还可以使用id
和ListView
进一步格式化styles
答案 1 :(得分:0)
在本书的第192页(第4章)中,onCreate
方法中包含以下代码段:
//---no need to call this---
//setContenetView(R.layout.main);
那是因为您正在使用ListActivity
来使内容视图成为ListView
。如果您想要定义其他视图的自定义布局:使您的类仅扩展Activity
。然后在main.xml文件中,您可以输入以下内容:
<ListView
android:id="@+id/list"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
现在,您可以使用onCreate
方法调用:setContentView(R.layout.main)
,并在其下方引用列表视图:
ListView list = (ListView) findViewById(R.id.list);
list.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
list.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, presidents));