Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

relative layout

How to positionate item between 2 other items in the center? (look at this red button) - How to positionate it between "Center Button" and "Bottom Button" at the center

Here is my relative layout code:

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_height="fill_parent" 
android:layout_width="fill_parent"> 

<Button 
android:id="@+id/button_center" 
android:text="Center" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_centerVertical="true" 
android:layout_centerInParent="true"/>

<!-- new button should be between this 2 items -->

<Button 
android:id="@+id/button_bottom" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="Bottom" 
android:layout_centerHorizontal="true" 
android:layout_alignParentBottom="true"/> 

<Button 
android:id="@+id/button_top" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="Top" 
android:layout_alignParentTop="true" 
android:layout_centerHorizontal="true"/> 

<Button 
android:id="@+id/button_left" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="Left" 
android:layout_alignParentLeft="true" 
android:layout_centerVertical="true"/> 

<Button 
android:id="@+id/button_rignt" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="Right" 
android:layout_alignParentRight="true" 
android:layout_centerVertical="true"/> 

<Button 
android:id="@+id/button_rel_right" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_toLeftOf="@id/button_right" 
android:layout_alignTop="@id/button_rignt" 
android:text="RelRight"/> 

<Button 
android:id="@+id/button_rel_left" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_toRightOf="@id/button_left" 
android:layout_alignTop="@id/button_left" 
android:text="RelLeft"/> 


</RelativeLayout> 
share|improve this question
1  
post the xml of your layout. Solution depends on your xml – Yashwanth Kumar Oct 29 '11 at 16:40

2 Answers

up vote 2 down vote accepted

You will need to add another layout so that the button will be exactly in the middle. For example, add this to your layout:

<FrameLayout
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_above="@+id/button_bottom"
    android:layout_alignLeft="@+id/button_center"
    android:layout_alignRight="@+id/button_center"
    android:layout_below="@id/button_center" >
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="new" />
</FrameLayout>
share|improve this answer

I came to this solution:

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

  <!-- centered button -->

  <LinearLayout
      android:orientation="vertical" 
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_alignParentTop="true"
      android:layout_centerHorizontal="true">

    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1">

      <Button android:text="CenteredButton"
              android:id="@+id/centered_button"         
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_gravity="center"/>

    </FrameLayout>  
  </LinearLayout>

</RelativeLayout>

Just use this code with LinearLayout instead of the Button. I think it is not the best one, but it is good enough.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.