我试图制作视图,蓝色条,在列表中显示,但似乎无法做到。 注意:稍后在创建列表视图时设置图像
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">
<LinearLayout
android:id="@+id/list_img_ll"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal">
<ImageView
android:id="@+id/imgList1"
android:layout_width="wrap_content"
android:layout_height="80dp"
/>
</LinearLayout>
<View android:id="@+id/state_open"
android:layout_alignParentRight="true"
android:layout_width="20dp"
android:layout_height="match_parent"
android:background="@color/CVBlue" />
</RelativeLayout>
getView()方法
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
RecordHolder holder = null;
if (row == null) {
LayoutInflater inflater = ((Activity) context).getLayoutInflater();
row = inflater.inflate(layoutResourceId, parent, false);
holder = new RecordHolder();
holder.imageItem = (ImageView) row.findViewById(R.id.imgList1);
holder.stateView = row.findViewById(R.id.state_open);
row.setTag(holder);
} else {
holder = (RecordHolder) row.getTag();
}
Item item = data.get(position);
holder.imageItem.setImageBitmap(item.getImage());
return row;
}
这是结果。注意右上角似乎尝试生成但不起作用。 此外,当我设置相对布局的高度时,它工作,我很困惑。 不工作的形象 http://i.stack.imgur.com/xAlpg.png
这是我想要的,无需配置relativelayout大小 http://i.stack.imgur.com/SCRTu.png
答案 0 :(得分:2)
问题是你的LinearLayout。添加以下属性:
android:layout_toLeftOf="@+id/state_open"
问题是你将LinearLayout的宽度设置为match_parent,它占用了整个屏幕的宽度。不会为View留下任何空间。通过将其设置在左侧,它将阻止它占用视图的所有可用空间。
知道了。很奇怪。在state_open视图上添加:
android:layout_alignTop="@+id/list_img_ll"
android:layout_alignBottom="@+id/list_img_ll"
问题是state_open视图不知道给出颜色值的高度...即使视图获得适当的高度。将它与LinearLayout对齐起作用。替代解决方案是仅为View提供实际的dp大小而不是match_parent。即,80dp。最奇怪的事情。
答案 1 :(得分:-1)
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">
<View android:id="@+id/state_open"
android:layout_alignParentRight="true"
android:layout_width="20dp"
android:layout_height="match_parent"
android:background="@color/CVBlue" />
<LinearLayout
android:id="@+id/list_img_ll"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_toLeftOf="@id/state_open">
<ImageView
android:id="@+id/imgList1"
android:layout_width="wrap_content"
android:layout_height="80dp"/>
</LinearLayout>
</RelativeLayout>