Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8919819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T06:07:12+00:00 2026-06-15T06:07:12+00:00

I have a small problem. Please see image below: I had problems positioning TextView1

  • 0

I have a small problem. Please see image below:

enter image description here

I had problems positioning TextView1 above edittext, so i checked this forum for great solution. I was using android:layout_above="@id/edittext", but it seems it was not working. Then i tried android:layout_below="@id/textview", and it worked nicely. But now i have other problem. I can’t align TextView1 on the top center of edittext below. I tried layout_align options but most of them throws exception “some circular thing”.

Where is the catch? Below is my XML ( of relative layout )

 <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:gravity="center"
    android:padding="10dp" >

    <TextView
       android:id="@+id/workingTimeTV"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"    
       android:text="TextView1" />

     <EditText
        android:id="@+id/hoursET"
        android:layout_width="100dp"
        android:text="1"
        android:gravity="center"
        android:maxLength="6"
        android:layout_below="@id/workingTimeTV"
        android:layout_height="wrap_content"
        android:inputType="number" >
        <requestFocus />
    </EditText>

    <TextView
       android:id="@+id/hoursTV"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:textSize="25sp"
       android:layout_toRightOf="@id/hoursET"
       android:layout_alignBaseline="@id/hoursET"
       android:text="h" /> 
</RelativeLayout>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T06:07:13+00:00Added an answer on June 15, 2026 at 6:07 am

    The problem is you assuming that if set android:gravity="center" that align child in center, but it not works with relative layout, so you use android:layout_centerVertical="true" every child whatever you want to position in center. Following modified code will fulfill your expectation.

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:padding="10dp" >
    
            <TextView
                android:id="@+id/workingTimeTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="TextView1" />
    
            <EditText
                android:id="@+id/hoursET"
                android:layout_width="100dp"
                android:layout_height="wrap_content"
                android:layout_below="@id/workingTimeTV"
                android:layout_centerHorizontal="true"
                android:gravity="center"
                android:inputType="number"
                android:maxLength="6"
                android:text="1" >
    
                <requestFocus />
            </EditText>
    
            <TextView
                android:id="@+id/hoursTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignBaseline="@id/hoursET"
                android:layout_toRightOf="@id/hoursET"
                android:text="h"
                android:textSize="25sp" />
        </RelativeLayout>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hey guys, i have very small issue please see the code below // this
I have this problem on my payroll processing system. Below the area where the
Please see each section below for a description of my problem described in three
have small problem, and would very much appreciate help :) I should convert byte
I have small problem with Spring MVC. Basically what I'm trying to do is
I have a small problem and I've figured out where when and why it
I have a small problem which i can't seem to figure out. I tried
I have a small problem which i can't seem to solve myself. Look at
I have a small problem with the visibility of an ellipse. In runtime I
I have a small problem with Smarty... I have two different template files in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.