我需要在滚动视图中使用两个列表视图,这显然不适用于Android,但这是客户需要的。所以我试图以编程方式扩充我的列表。我的表格单元格没有显示我当前的设置。如果我调整xml文件中的设置,我可以在顶部显示一行,但不显示其他行。我在这里做错了什么?
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.alertsview);
inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
topRows = new ArrayList<View>();
topLayout = (LinearLayout)findViewById(R.id.topListLayout);
bottomRows = new ArrayList<View>();
bottomLayout = (LinearLayout)findViewById(R.id.bottomListLayout);
addRecip = (Button) findViewById(R.id.addRecipient);
addRecip.setOnClickListener(this);
if (SugarLoafContext.currentSite.alertRecipients.size() >= 5)
addRecip.setVisibility(View.GONE);
else
addRecip.setVisibility(View.VISIBLE);
EventBus.subscribe(ConfigureAlertsNotification.class, this);
EventBus.publish(new ViewAlertsNotification());
}
public void setTopList()
{
topLayout.removeAllViews();
topRows.clear();
List<Camera> camList = new ArrayList<Camera>(SitesOrchestrator.getInstance().currentSite.cameraList);
for (int i = 0; i < camList.size(); i++)
{
String index = Integer.toString(i);
Camera cam = camList.get(i);
View row = inflater.inflate(R.layout.cameraalertrow, null);
TextView name = (TextView)row.findViewById(R.id.cameraNameAlerts);
CheckBox chk = (CheckBox)row.findViewById(R.id.camAlertChk);
name.setText(cam.name);
name.setTextColor(Color.GRAY);
chk.setOnCheckedChangeListener(this);
chk.setTag(index);
if (cam.isOnline)
{
chk.setEnabled(true);
if (cam.alertsEnabled && !chk.isChecked())
chk.setChecked(true);
else if (cam.alertsEnabled == false && chk.isChecked())
chk.setChecked(false);
}
else
{
chk.setChecked(cam.alertsEnabled);
chk.setEnabled(false);
name.setTextColor(Color.DKGRAY);
}
topRows.add(row);
topLayout.addView(row);
}
}
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical"
android:fillViewport="true"
android:id="@+id/alertsTopScroll">
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<TextView
android:id="@+id/alertsTopText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#CCCCCC"
android:text="@string/alerts_top_title"
android:gravity="center"
android:textColor="#000000"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true">
</TextView>
<LinearLayout
android:id="@+id/topListLayout"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
</LinearLayout>
<TextView
android:id="@+id/alertsBottomText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#CCCCCC"
android:text="@string/alerts_bottom_title"
android:gravity="center"
android:textColor="#000000"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true">
</TextView>
<LinearLayout
android:id="@+id/bottomListLayout"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
</LinearLayout>
<Button
android:id="@+id/addRecipient"
android:layout_height="50dp"
android:layout_width="fill_parent"
android:layout_centerHorizontal="true"
android:text="@string/addRecipient"/>
</LinearLayout>
</ScrollView>
(是的,正在调用方法setTopList())
答案 0 :(得分:1)
“我在这里做错了什么?” 您将ListViews放在ScrollView中 - 只是不要这样做。您应该在列表视图world of listview上观看Romain Guys google io会话。 (在42:40滚动视图中的列表视图被解释)
我不知道客户想要什么。但我怀疑他是否已经告诉过你将ListViews放在ScrollViews中。最有可能存在其他解决方案来存档客户想要的内容。
列表视图中包含多少项?如果没有太多,你可以在ScrollView中使用两个LinearLayouts。
请更具体地说明布局应如何。