我创建了一个ListView,它显示了可以播放它们的不同媒体文件。
每一行都包含一个带有两个小部件的RelativeLayout。 (SeekBar和其他)
此RelativeLayout的上半部分也是RelativeLayout。 它由三部分组成:
使用android:layout_toRightOf
属性将它们组合在一起。
这非常有效,除非文件名太长。
长文件名会导致右侧LinearLayout'Box'被推到屏幕外。
此外,整个(内部)RelativeLayout无缘无故地垂直拉伸。
我已尝试设置android:ellipsize="end"
和android:singleLine="true"
。但这并没有解决它。
下面是完整的代码:
<?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="fill_parent"
android:orientation="horizontal"
android:padding="8dp" >
<!-- Top Box -->
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/fragment_play_row_topbox" >
<!-- Play button -->
<LinearLayout android:id="@+id/fragment_play_row_iconBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:padding="4dip" >
<ImageButton
android:id="@+id/fragment_play_row_icon"
android:layout_width="48dp"
android:layout_height="48dp"
android:src="@android:drawable/ic_media_play" />
</LinearLayout>
<!-- Big Text -->
<TextView
android:id="@+id/fragment_play_row_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/fragment_play_row_iconBox"
android:text="\??"
android:textSize="24dp"
android:ellipsize="end"
android:singleLine="true" />
<!-- Size & Duration & Button-->
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/fragment_play_row_text"
android:layout_alignParentRight="true"
android:gravity="right" >
<TextView
android:id="@+id/fragment_play_row_size"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text=" ?? MB" />
<TextView
android:id="@+id/fragment_play_row_duration"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text=" ??:??" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:src="@android:drawable/arrow_down_float" />
</LinearLayout>
</RelativeLayout>
<!-- Seek Bar -->
<SeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/fragment_play_row_topbox" />
</RelativeLayout>
我希望有人可以帮我解决这个问题。
提前致谢,
乌列尔
答案 0 :(得分:2)
您必须将信息布局作为项目的根目录引用,将其引用到父项和引用信息布局的文本,这样您就不会遇到此问题,我已经修改了一下您的项目布局只是在信息布局(linearInfo)中添加一个id,当你设置一个id时,remmember是“@ + id / my_item”,但当你引用它时是“@ id / my_item”,这里是你的布局修改,希望它帮助你:
<?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="fill_parent"
android:orientation="horizontal"
android:padding="8dp" >
<!-- Top Box -->
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/fragment_play_row_topbox" >
<!-- Play button -->
<LinearLayout
android:id="@+id/fragment_play_row_iconBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/linearInfo"
android:layout_alignTop="@+id/linearInfo"
android:padding="4dip" >
<ImageButton
android:id="@+id/fragment_play_row_icon"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_gravity="center_vertical"
android:src="@android:drawable/ic_media_play" />
</LinearLayout>
<!-- Big Text -->
<TextView
android:id="@+id/fragment_play_row_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/linearInfo"
android:layout_alignTop="@+id/linearInfo"
android:layout_centerVertical="false"
android:layout_toLeftOf="@+id/linearInfo"
android:layout_toRightOf="@+id/fragment_play_row_iconBox"
android:ellipsize="end"
android:gravity="center_vertical"
android:singleLine="true"
android:text="\?? Ultra Hyper Mega Giant Text"
android:textSize="24dp" />
<!-- Size & Duration & Button-->
<LinearLayout
android:id="@+id/linearInfo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_centerVertical="true"
android:gravity="right"
android:orientation="vertical" >
<TextView
android:id="@+id/fragment_play_row_size"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" ?? MB" />
<TextView
android:id="@+id/fragment_play_row_duration"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text=" ??:??" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:src="@android:drawable/arrow_down_float" />
</LinearLayout>
</RelativeLayout>
<!-- Seek Bar -->
<SeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/fragment_play_row_topbox" />
</RelativeLayout>