gpt4 book ai didi

Android 的 RelativeLayout 似乎坏了

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:20:31 25 4
gpt4 key购买 nike

我正在处理一个布局,其中我将 ListView 与 RelativeLayout 行项目一起使用。行项目本身显示不正确。

问题是 txtVideoDuration TextView 绘制在行项目的顶部而不是底部。因此,txtVideoTitle 的高度为 0。正如您在 XML 中看到的,txtVideoDuration 应该固定在 ListView 的底部。

我的目标是让布局类似于 google 给我的教程。示例:http://android-developers.blogspot.com/2009/02/android-layout-tricks-1.html

我使用的是 Android 2.0.1。我什至在没有修改的情况下将示例布局插入到 ListView 中,并且发生了相同的行为。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip">
<ImageView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:id="@+id/imgVideoThumbnail"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:minHeight="64dip"
android:layout_marginRight="6dip"
android:src="@drawable/icon" />
<TextView
android:id="@+id/txtVideoDuration"
android:layout_width="fill_parent"
android:layout_height="26dip"
android:layout_toRightOf="@+id/imgVideoThumbnail"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:singleLine="true"
android:ellipsize="marquee"
android:text="0:00:00" />
<TextView
android:id="@+id/txtVideoTitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/imgVideoThumbnail"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_above="@+id/txtVideoDuration"
android:layout_alignWithParentIfMissing="true"
android:gravity="center_vertical"
android:text="[Title]"
android:textColor="#FFFFFF" />

</RelativeLayout>

这个简单的例子很管用。这是 Activity 的根 XML 布局。顶部的错误代码是 ListView 中的行项目。似乎 ListView 本身正在破坏它。

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ListView
android:id="@+id/listVideoCatalog"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<TextView
android:id="@+id/txtName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="Hello World" />
</RelativeLayout>
</merge>

这是将行项目扩展到 ListView 的 getView 代码。

    static class ViewHolder
{
TextView txtTitle;
ImageView imgThumbnail;
TextView txtDuration;
Uri videoLocation;
}

@Override
public View getView(int position, View convertView, ViewGroup parent)
{
ViewHolder holder;

if(convertView == null)
{
LayoutInflater li = (LayoutInflater) this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = li.inflate(R.layout.listitem_videolineitem, null);
holder = new ViewHolder();
holder.txtDuration = (TextView) convertView.findViewById(R.id.txtVideoDuration);
holder.txtTitle = (TextView) convertView.findViewById(R.id.txtVideoTitle);
holder.imgThumbnail = (ImageView) convertView.findViewById(R.id.imgVideoThumbnail);
convertView.setTag(holder);
}
else
{
holder = (ViewHolder) convertView.getTag();
}

VideoFile video = this.videos.get(position);
holder.txtDuration.setText(millisToTimestamp(video.videoDuration));
holder.txtTitle.setText(video.videoTitle);

// Some debugger visual code.
holder.txtDuration.setBackgroundColor(Color.GREEN);
holder.txtTitle.setBackgroundColor(Color.CYAN);


return convertView;
}

最佳答案

这已在已接受答案的评论 中得到解答。为了清楚起见,这就是答案:

改变

li.inflate(R.layout.listitem_videolineitem, null);

li.inflate(R.layout.listitem_videolineitem, parent, false);

关于Android 的 RelativeLayout 似乎坏了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1895303/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com