我有一个带标签的应用程序。在一个选项卡中,我需要将数据(字符串)放在行中。为此,我选择tableLayout
但是当我想在其行上使用contextmenu
时,它不起作用。
我可以显示contextmenu
onLongClick
,但问题是我无法获取有关所选行的信息以编辑或删除所选行。然后我在一个讨论中读到如果我们有很多行,使用listView
比tablelayout
要好。但我看到的例子扩展了listactivity
,但我不想这样做。
因此,当我尝试使用listView
而不延长listactivity
时,我不知道该怎么做我的意思是我之前从未使用listView
所以我尝试我在互联网上发现了不同的例子来理解它,但它不起作用。这是我到目前为止listView
所做的:
String [] items=getRessources().getStringArray(R.arra.resolution);
//Resolution is an array of strings
ListView lv=(ListeView) findViewById(R.id.listView);
v.setAdapter(new ArrayAdapter<string>(this, android.R.layout.simple_list_item_1, items);
当我编译它时,我得到一个包含我的数组元素的列表,但首先,我想改变我不能的文本颜色。其次,我想动态地将行添加到列表中,我不知道该怎么做。我想我必须使用adapter
来做,但我不知道如何做。
有人可以指导我完成这个。我只是想知道如何将我的列表附加到adapter
,这将允许我动态添加行,添加contextMenu
等。
答案 0 :(得分:6)
主要活动类:
import java.util.ArrayList;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.Button;
import android.widget.ListView;
public class SelectedActivity extends Activity {
private SelectedAdapter selectedAdapter;
private ArrayList<String> list;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.selected_example);
// populate the model - a simple a list
list = new ArrayList<String>();
list.add("Apple");
list.add("Orange");
list.add("Grape");
list.add("Grape1");
list.add("Grape2");
list.add("Grape3");
list.add("Grape4");
list.add("Grape5");
list.add("Grape6");
// create our SelectedAdapter
selectedAdapter = new SelectedAdapter(this,0,list);
selectedAdapter.setNotifyOnChange(true);
ListView listview = (ListView) findViewById(R.id.listExample);
listview.setAdapter(selectedAdapter);
listview.setOnItemClickListener(new OnItemClickListener() {
//@Override
public void onItemClick(AdapterView arg0, View view,
int position, long id) {
// user clicked a list item, make it "selected"
selectedAdapter.setSelectedPosition(position);
}
});
}
适配器类:
import java.util.List;
import android.content.Context;
import android.graphics.Color;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.TextView;
public class SelectedAdapter extends ArrayAdapter{
// used to keep selected position in ListView
private int selectedPos = -1; // init value for not-selected
public SelectedAdapter(Context context, int textViewResourceId,
List objects) {
super(context, textViewResourceId, objects);
}
public void setSelectedPosition(int pos){
selectedPos = pos;
// inform the view of this change
notifyDataSetChanged();
}
public int getSelectedPosition(){
return selectedPos;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
// only inflate the view if it's null
// if (v == null) {
LayoutInflater vi = (LayoutInflater)this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.selected_row, null);
// }
// get text view
TextView label = (TextView)v.findViewById(R.id.txtExample);
Button btn=(Button)v.findViewById(R.id.btn1);
// change the row color based on selected state
if(selectedPos == position){
label.setBackgroundColor(Color.CYAN);
btn.setBackgroundResource(R.drawable.next);
}
else{
label.setBackgroundColor(Color.WHITE);
}
label.setText(this.getItem(position).toString());
return(v);
}
}
答案 1 :(得分:0)
main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg8"
android:id="@+id/RootView"
>
<LinearLayout android:id="@+id/myLayout"
android:layout_width="wrap_content"
android:layout_height="fill_parent">
</LinearLayout>
</LinearLayout>
您需要定义一个用于保存每行数据的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:weightSum="1">
<TableRow
android:id="@+id/tableRow1"
android:layout_width="793dp"
android:layout_height="wrap_content"
android:layout_weight="0.23" >
<TextView android:id="@+id/col1"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:width="50dp"
android:textSize="18sp"
/>
<TextView android:id="@+id/col2"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:width="150dp"
android:textSize="18sp"
/>
<ImageView android:id="@+id/editimage"
android:background="@drawable/edit"
android:clickable="true"
android:onClick="ClickHandlerForEditImage"
android:layout_width="35dp"
android:layout_height="35dp"/>
</TableRow>
</LinearLayout>
在上面的xml中我也包含了ImageView,它并不是真的需要,但这只是为了让你知道我们还可以包含其他控件。
&安培;在最后你应该在你的相关课程中有一个功能:
private void LoadData()
{
DBAdapter db = new DBAdapter(this);
db.open();
Cursor cur = db.GetData();
private ListView lv = (ListView)findViewById(R.id.myLayout);
lv.setAdapter(null);
if(cur.moveToFirst())
{
String[] from = new String[] {"_id","column1"};
int[] to = new int[] {R.id.col1, R.id.col2};
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,R.layout.grid_item, cur, from, to);
lv.setAdapter(adapter);
}
db.close();
}
}
答案 2 :(得分:0)
似乎没有人回答你contextMenu问题。要获取上下文菜单以使用您的列表,请在致电ListView yourList = getListView();
后致电registerForContextMenu(yourList);
要处理菜单创建,您必须实现方法
@Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo){
super.onCreateContextMenu(context, v,menuInfo);
MenuInflater inflater = getMenuInflater();
menu.setHeaderTitle("YOUR TITLE");
menu.setHeaderIcon(R.drawable.YOUR DRAWABLE);
inflater.inflate(R.menu.YOUR_MENU_RESOURCE, menu);
}
然后,您可以通过实施方法来响应点击次数
@Override public boolean onContextItemSelected(MenuItem item){
switch(item.getItemId()){
case R.id.YOUR_MENU_ITEM: // do stuff if the item is selected
return true;
case R.id.YOUR_MENU_ITEM: // do stuff if the item is selected
return true;
case R.id.YOUR_MENU_ITEM: // do stuff if the item is selected
return true;
}
return false; // nothing selected
}