我在UI中显示项目列表时遇到了问题。
我的UI布局页面布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ListOfRecordsContainer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#454545"
android:orientation="vertical" >
<include
android:layout_weight="1"
layout="@layout/header" />
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ListOfRecords"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.01"
android:padding="1dp"
android:textSize="12sp" >
</TextView>
</LinearLayout>
在类中,一旦从远程系统检索列表并在UI中填充onSuccess()
,就会调用TextView
方法。
但是,布局中包含的标题部分会针对每条记录重复。我在这里错过了什么吗?
例如....实际结果是
<Header Button for LogOut>
Item1
<Header Button for LogOut>
Item2
预期结果
<Header Button for LogOut>
Item1
Item2
代码如下所示:
public class ItemMainPage extends ListActivity{
private String[] AccountName;
private String[] AccountIds;
private RestClient client;
private String apiVersion;
LinearLayout layout;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ListView lv = getListView();
apiVersion = getString(R.string.api_version);
lv.setTextFilterEnabled(true);
/*layout = (LinearLayout) View.inflate(this, R.layout.list_item_main_page, null);
Button buyButton = new Button(this);
buyButton.setText("Search");
layout.addView(buyButton);*/
}
@Override
public void onResume(){
super.onResume();
// Login options
String accountType = getString(R.string.account_type);
LoginOptions loginOptions = new LoginOptions(
null, // gets overridden by LoginActivity based on server picked by uuser
ForceApp.APP.getPasscodeHash(),
getString(R.string.oauth_callback_url),
getString(R.string.oauth_client_id),
new String[] {"api"});
new ClientManager(this, accountType, loginOptions).getRestClient(this, new RestClientCallback() {
//@Override
public void authenticatedRestClient(RestClient client) {
if (client == null) {
ForceApp.APP.logout(ItemMainPage.this);
return;
}
ItemMainPage.this.client = client;
getAccountList();
}
});
EventsObservable.get().notifyEvent(EventType.RenditionComplete);
}
private void getAccountList(){
try {
String soql = "select id, name from Account LIMIT 2";
RestRequest request = RestRequest.getRequestForQuery(apiVersion, soql);
client.sendAsync(request, new AsyncRequestCallback() {
//@Override
public void onSuccess(RestRequest request, RestResponse response) {
try {
if (response == null || response.asJSONObject() == null)
return;
JSONArray records = response.asJSONObject().getJSONArray("records");
if (records.length() == 0)
return;
AccountName = new String[records.length()];
AccountIds = new String[records.length()];
for (int i = 0; i < records.length(); i++){
JSONObject Account = (JSONObject)records.get(i);
AccountName[i] = Account.getString("Name");
AccountIds[i] = Account.getString("Id");
}
//ArrayAdapter<String> ad = new ArrayAdapter<String>(ItemMainPage.this,
// R.layout.list_item_main_page,
// AccountName);
ArrayAdapter<String> ad = new ArrayAdapter<String>(ItemMainPage.this, R.layout.list_item_main_page, R.id.ListOfRecords, AccountName);
setListAdapter(ad);
Log.d("Adapter", ad.toString());
//EventsObservable.get().notifyEvent(EventType.RenditionComplete);
} catch (Exception e) {
e.printStackTrace();
displayError(e.getMessage());
}
}
//@Override
public void onError(Exception exception) {
displayError(exception.getMessage());
EventsObservable.get().notifyEvent(EventType.RenditionComplete);
}
});
} catch (Exception e) {
e.printStackTrace();
displayError(e.getMessage());
}
}
private void displayError(String error) {
//ArrayAdapter<String> ad = new ArrayAdapter<String>( AccountList.this, R.layout.list_item, new String[]{"Error retrieving Account data - " + error});
//setListAdapter(ad);
((TextView) findViewById(R.id.welcome_text)).setText(getString(R.string.welcome, client.getClientInfo().username));
}
}
如果我遗漏任何东西,请帮忙。
答案 0 :(得分:0)
我猜你提供的XML被用作行布局,这意味着:
<include
android:layout_weight="1"
layout="@layout/header" />
包含在每一行中(就像你所看到的那样)。
如果要向ListView添加标题,请尝试:
View header = getLayoutInflater().inflate(R.layout.header, null);
listView.addHeaderView(header);
并从行布局中删除include
元素。
答案 1 :(得分:0)
将标题设置为单独的XML布局,并使用addHeaderView添加到列表视图中。 IE:
View header = (View)getActivity().getLayoutInflater().inflate(R.layout.listview_header_row, null);
lv.addHeaderView(header);
希望这有帮助!