我正在從WebService檢索數據,並使用自定義適配器ArrayAdapter
來填充我的listView
。對於每一行,我都必須根據web服務返回來設置左邊距或右邊距。所以我的想法就是用這個下面的代碼:列表視圖和以編程方式爲行保留
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
layoutParams.setMargins(30, 0, 0, 0); // left margin
holder.mainContainer.setLayoutParams(layoutParams); // Here is the problem
mainContainer上是一個的LinearLayout
在getView
方法我使用的視圖霍德勒模式
MessageHolder holder = null;
if (convertView == null) {
convertView = LayoutInflater.from(MessagesActivity.this).inflate(R.layout.thread_activity_listview_item, null);
holder = new MessageHolder();
holder.mainContainer = (LinearLayout) convertView.findViewById(R.id.main_container);
convertView.setTag(holder);
} else {
holder = (MessageHolder) convertView.getTag();
}
這是我xml
對於行:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_left_corner_discussion_on"
android:orientation="vertical"
android:padding="10dp" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginRight="15dp"
android:layout_marginTop="5dp"
android:gravity="center_vertical" />
<TextView
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:layout_marginTop="2dp"
android:gravity="center_vertical"
android:textColor="@android:color/black"
android:textSize="16sp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginBottom="2dp"
android:layout_marginTop="2dp"
android:orientation="horizontal" >
<TextView
android:id="@+id/updated"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp" />
</LinearLayout>
但有了這個代碼,我有以下錯誤:
java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams cannot be cast to android.widget.AbsListView$LayoutParams
我準確的,我不能在我的情況下使用的填充。此外,如果我使用AbsListView.LayoutParams
而不是LinearLayout.LayoutParams
,則無法再設置保證金。
感謝
發佈包含ListView本身的主「XML」代碼請 –
此外,包含ListView和持有者元素初始化的邏輯 –
我編輯了我的代碼,但我不確定這些信息是否非常有用。我知道它存在其他問題但我沒有找到任何解決方案 – mrroboaat