除了我的应用程序之外,我只想显示主活动上的字符串,当应用程序打开时发生的所有事情都会显示字符串数组。更不用说了。似乎无法在任何地方找到这些信息!
答案 0 :(得分:1)
好吧,如果你想在ListView中显示它们,请使用ArrayAdapter并将字符串添加到适配器。
顺便说一下,如果数组在你的字符串资源中,请使用getResources()。getStringArray(R.array.id)从你的代码中获取数组。
答案 1 :(得分:0)
将textview添加到主活动中,然后像这样创建textview的对象。
TextView textView = (TextView) findViewById(R.id.id_of_text_view);
然后将文本设置为textview,如下所示:
textView.setText("blah");
从存储它的地方获取文本
答案 2 :(得分:0)
您可以使用ListView组件。
list_cars.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="20sp" >
</TextView>
public class ListCarsActivity extends ListActivity {
static final String[] CARS = new String[] { "BWM", "Volvo", "Mersedes-Benz",
"Honda", "Toyota", "Nexia", "Wolkswagen", "CHevrolet",
"Ferrari", "Volga", "Porshe", "Bentley", "Bugatti" };
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// it is not needed
// setContentView(R.layout.list_cars);
setListAdapter(new ArrayAdapter<String>(this, R.layout.list_cars,CARS));
ListView listView = getListView();
listView.setTextFilterEnabled(true);
listView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// When clicked, show a toast with the TextView text
Toast.makeText(getApplicationContext(),
((TextView) view).getText(), Toast.LENGTH_SHORT).show();
}
});
}
}