Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RelativeLayout center vertical

I want to make a list row layout. This layout has a imageview in the most left, a textview right next to the imageview, and a imageview in the most right. I want all of them are center vertical.

<RelativeLayout     android:layout_width="fill_parent" android:layout_height="100dp"     android:gravity="center_vertical"     >     <ImageView          android:id="@+id/icon"         android:layout_width="50dp" android:layout_height="50dp"         android:layout_gravity="center_vertical" />     <TextView          android:id="@+id/func_text" android:layout_toRightOf="@id/icon"         android:layout_width="wrap_content" android:layout_height="100dp"         android:layout_gravity="center_vertical" />     <ImageView          android:layout_width="50dp" android:layout_height="50dp"         android:layout_alignParentRight="true"         android:layout_gravity="center_vertical"         android:src="@drawable/arrow" /> </RelativeLayout> 

I also tried to add android:layout_centerVertical="true" to the textview, but the result is the textview align bottom with the two imageview. I tried this in android 4.2 emulator. Anybody could help me about this?

like image 310
user2368561 Avatar asked May 10 '13 03:05

user2368561


1 Answers

use

 android:layout_centerVertical="true" 
like image 83
stinepike Avatar answered Oct 02 '22 15:10

stinepike