PS:参考链接“www.androidpeople.com/android-custom-listview-tutorial-part-1”不可用。
亲爱的,我试图通过使用以下代码(1个java主程序和2个xml布局文件)在Android上创建单个选择ListView以及mutilple项目列表。然而,它会显示多个radiobutton启用,这不是我的期望,它们应该互相排斥!
如何获取选择列表视图的位置/内容(?)?
你能帮我看一下我错在哪里以及如何实施吗?非常感谢帮助!
我的代码列出: 主要java代码:
package list.view;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ListView;
import android.widget.RadioButton;
import android.widget.SimpleAdapter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
public class MultipleItemsListView extends Activity
{
private ListView mListView01;
private SimpleAdapter mSimpleAdapter;
private List<String> allTxt1;
private List<String> allTxt2;
private List<String> allTxt3;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mListView01 = (ListView)this.findViewById(R.id.listView1);
updateListView();
}
private void updateListView()
{
allTxt1 = new ArrayList<String>();
allTxt2 = new ArrayList<String>();
allTxt3 = new ArrayList<String>();
for (int i = 0 ; i<5; i++)
{
allTxt1.add("test1"+i);
allTxt2.add("test2"+i);
allTxt3.add("test3"+i);
}
if(allTxt1.size()>0)
{
ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
HashMap<String, String> map;
for (int i = 0; i< allTxt1.size(); i++)
{
map = new HashMap<String, String>();
map.put("txt1", allTxt1.get(i));
map.put("txt2", allTxt2.get(i));
map.put("txt3", allTxt3.get(i));
mylist.add(map);
}
mSimpleAdapter = new SimpleAdapter
(
this, mylist, R.layout.items_list ,
new String[] {"txt1", "txt2", "txt3",""},
new int[] {R.id.textView1, R.id.textView2 , R.id.textView3 ,R.id.radioButton1}
);
mListView01.setItemsCanFocus(true);
// mListView01.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
mListView01.setAdapter(mSimpleAdapter);
}
}
}
布局1: main.xml
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <RadioGroup android:id="@+id/radioGroup1" android:layout_width="wrap_content" android:layout_height="wrap_content" > <ListView android:id="@+id/listView1" android:layout_width="match_parent" android:layout_height="wrap_content" > </ListView> </RadioGroup> </LinearLayout>
布局2: items_list.xml
<TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="3dip" android:text="TextView1" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="3dip" android:text="TextView2" /> <TextView android:id="@+id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="3dip" android:text="TextView3" /> <RadioButton android:id="@+id/radioButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="10dip"/> </LinearLayout>
答案 0 :(得分:0)
我们的朋友似乎很难得到解决方案/回应。我不得不让进步。 所以,我用了一个替代方案来解决这个问题/问题,我想在下面分享一下:
我首先将每个列表项的描述(文本字符串)组合成一个字符串。然后,使用此String实现“simple_list_item_single_choice.xml”以构建ListView。
使用这种方式对我的应用程序有一些限制,对我来说不是最好的方法(只有60%符合我的预期。)。希望有正确的方法回应!