我正在尝试构建布局。我使用水平线性布局,在其中我有一个图像视图、另一个布局和另一个图像视图。关键是两个图像视图应该在左侧和右侧,并且大小为 od 10 dp。Center LinearLayout 应该拉伸到屏幕但左右没有 10dp。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/li_iv"
android:layout_width="10dp"
android:layout_height="match_parent"
android:layout_gravity="left"
android:background="@drawable/pen" />
<LinearLayout
android:id="@+id/li_ll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:background="@drawable/back"
android:orientation="vertical" >
<TextView
android:id="@android:id/title"
android:layout_width="match_parent"
android:layout_height="28dp"
android:layout_marginLeft="28dp"
android:layout_marginRight="28dp"
android:textSize="22sp"
android:textStyle="bold" />
<TextView
android:id="@android:id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:layout_marginLeft="29dp"
android:layout_marginRight="31dp"
android:layout_marginTop="5dp"
android:background="@drawable/back_repeat"
android:text="aaaaaaaaaa\n"
android:textSize="16dp" />
<ImageView
android:id="@+id/li_rl_center_right"
android:layout_width="10dp"
android:layout_alignParentRight="true"
android:layout_height="match_parent"
android:layout_gravity="right"
android:background="@drawable/pen" />
</LinearLayout>
但这不会发生。右侧图像视图位于主 LinearLayout 的边界之外 - 在它的右侧,因此实际上在屏幕之外,因为主 LinearLayout 宽度填充了父级。我不使用 relativeLayout,因为这样内容不会被拉伸到父级的大小,而是在 eclipse 中的图形布局中扩展到整个屏幕的大小,并且在手机上 imageViews 只有父级的默认大小。当 textview 内部有更多行时,侧面的图像不会拉伸。
有什么想法可以将这个 ImageView 放回布局的右侧吗?