use*_*026 15 android android-layout
我有下面的布局,基本上显示"消息"作为内置的"消息"泡沫更苗条.我只需要在右边显示一个箭头图像,显示的是eimage,但我需要将它垂直居中.我试图添加" android:gravity="center_vertical"到图像,但它没有效果.
任何线索?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/wrapper"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#00DBE2ED" >
<RelativeLayout
android:id="@+id/wrapper2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#00DBE2ED" >
<EditText
android:id="@+id/comment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:editable="false"
android:layout_marginTop="5dip"
android:layout_marginRight="5dip"
android:layout_marginLeft="5dip"
android:background="@drawable/bubble_yellow"
android:paddingLeft="10dip"
android:text="Hello bubbles!"
android:textColor="@android:color/primary_text_light" />
<TextView
android:id="@+id/sender"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="0dip"
android:paddingLeft="5dip"
android:paddingRight="2dip"
android:text="Hello bubbles!"
android:textColor="#b9dcdcdc"
android:textSize="11sp"
android:layout_below="@+id/comment" />
<ImageView
android:id="@+id/aquaplayicon"
android:src="@drawable/aquaplayicon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:onClick="onClickGirl"
android:layout_alignParentRight="true"
android:paddingRight="3dip"
android:gravity="center_vertical" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)
Phi*_*hil 55
gravity属性不适用于布局,因为这是一个LinearLayout属性,而你ImageView的内部属于你的RelativeLayout.相反,删除该行
android:gravity="center_vertical"
Run Code Online (Sandbox Code Playgroud)
并添加该行
android:layout_centerVertical="true"
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
30248 次 |
| 最近记录: |