这里的初学者问题我想知道是否有人可以指出我正确的方向。我需要一个“帐户”的列表视图,其中每个项目都将包含一个文本视图,以及一个可以从预设数量中选择的微调器,因此每个项目将如下所示:
________________________
|TextView---------Spinner|
|________________________|
这是我到目前为止所拥有的:
activity_topup.xml这是活动的主要 xml
<ListView
android:id="@+id/topup_accounts_listview"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/stq_grey"
android:divider="@android:color/transparent"
android:dividerHeight="20.0sp"/>
然后在我的 java 文件TopUpActivity.java
String[] listAccounts = { "Acc1", "Acc2", "Acc3"};
accountListAdapter = new ArrayAdapter<String>(this, R.layout.listview_item_accounts, R.id.accounts_list_tv, listAccounts);
listView = (ListView)findViewById(R.id.topup_accounts_listview);
listView.setAdapter(accountListAdapter);
listview_item_accounts.xml包含每个项目的内容(文本视图和微调器)
<TextView
android:id="@+id/accounts_list_tv"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/accounts_list_amt_spinner"
android:background="@drawable/list_item_selector_grey"
style="@style/ListText" />
<Spinner
android:id="@id/accounts_list_amt_spinner"
android:layout_width="96dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:prompt="@string/topup_amt_prompt"
android:background="@drawable/list_item_selector_blue"
style="@style/ListText" />
我在正确的轨道上吗?!结果是正确的,但我不太清楚如何填充微调器,我只能使用我认为的这种方法填充文本视图。我将其添加到 java 文件中以尝试填充微调器,但微调器仍然为空:
//Inflate the listview items
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View vi = inflater.inflate(R.layout.listview_item_accounts, null);
//Get the spinner
amt = (Spinner)vi.findViewById(R.id.accounts_list_amt_spinner);
//Add the values to the spinner by setting this adapter
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
R.array.topup_amts, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
amt.setAdapter(adapter);