我知道有很多解决方案可以解决这个问题。
但情况并非如此。
这是我的java代码。
package com.progme.sejong_bus;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class BUSActivity extends Activity {
ListView listView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.bus);
String []data =
{"공통공지사항","101번 버스정보","102번 버스정보","103번 버스정보","104번 버스정보",
"105번 버스정보","106번 버스정보","107번 버스정보","108번 버스정보","109번 버스정보",
"110번 버스정보","111번 버스정보","112번 버스정보","113번 버스정보","114번 버스정보",
"115번 버스정보","116번 버스정보","117번 버스정보"};
listView = (ListView)findViewById(R.id.listview1);
ArrayAdapter<?> adapter = new ArrayAdapter<Object>(getApplicationContext(), android.R.layout.simple_list_item_1, data);
listView.setAdapter(adapter);
}
}
这是我的XML代码
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#000000" >
<ListView
android:id="@+id/listview1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_gravity="top"
android:layout_weight="1"
android:cacheColorHint="#000000"
android:dividerHeight="1dp"
android:divider="#FFFFFF" >
</ListView>
</LinearLayout>
我想要每个列表的意图..但我如何选择每个列表?
我必须使用哪些代码?
编辑&gt;
我想看到我的应用就像这张图片一样。
每个列表都是每个页面的链接。
我不能这样做,因为我不知道代码是这样工作的。(?)
无论如何......我要做什么?
答案 0 :(得分:0)
首先,您需要使用数组来获取当前当前的列表项 你的主java代码中的string [] data =可以用这个替换
// Listview Data
String[] List_items = getResources().getStringArray(R.array.List_items);
在值中创建一个新的xml文件并粘贴此代码,只需调用列表Lise_items 只需用列表视图中的任何内容替换(列表项)
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="List_items">
<item>list item </item>
<item>list item</item>
<item>list item</item>
<item>list item</item>
<item>list item</item>
</string-array>
</resources>
添加了onclick监听器
/// listening to single list item on click
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
/// selected item
String List_items = ((TextView) view).getText().toString();
/// Launching new Activity on selecting single List Item
Intent i = new Intent(getApplicationContext(), SingleListItem.class);
/// sending data to new activity
i.putExtra("List_items", List_items);
startActivity(i);
}
});
}
}
您需要在点击
上为视图创建另一个xml文件和java文件例如
list_item_view.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:id="@+id/List_item"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="25dip"
android:textStyle="bold"
android:padding="10dip"
android:textColor="#ffffff"/>
</LinearLayout>
Listitemselected.java
package com.progme.sejong_bus;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
public class Listitemselected extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.list_item_view);
TextView txtList_items = (TextView) findViewById(R.id.List_items);
Intent i = getIntent();
// getting attached intent data
String List_items = i.getStringExtra("List_items");
// displaying selected List name
txtList_items.setText(List_items);
}
}
您必须为列表中的每个项目创建新意图,以便在单击每个项目时,它将转到新活动,例如
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
Intent a;
switch(position){
case 1:
a = new Intent("Items 1 page");
break;
case 2:
a = new Intent("items 2 page");
break;
if(null!=a)
startActivity(a);
}
}