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

  • SEARCH
  • Home
  • 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 6330465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:52:30+00:00 2026-05-24T17:52:30+00:00

In my Android App (for landscape screen orientation) I need to place widgets to

  • 0

In my Android App (for landscape screen orientation) I need to place widgets to two relative layouts, one on the left of the screen, and one at the right (to fill the full size).

I prefer working programmatically (I find it more flexible than xml).

Shoud I better use a TableLayout as the parent layout fro my sub-layouts?

  • 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-05-24T17:52:32+00:00Added an answer on May 24, 2026 at 5:52 pm

    For just two RelativeLayouts next to each other you have plenty of choice to archieve that. A horizontal LinearLayout would be the easiest in my opinion.


    Edit: I never do layouts in code, but since you probably read a lot of docs with XML you should be able to translate this example. Uses a 50/50 space distribution for both layouts.

    <LinearLayout android:layout_width="fill_parent"
                  android:layout_height="fill_parent"
                  android:orientation="horizontal">
        <RelativeLayout android:layout_width="0dp"
                        android:layout_height="fill_parent"
                        android:layout_weight="1" >
    
        </RelativeLayout>
    
        <RelativeLayout android:layout_width="0dp"
                        android:layout_height="fill_parent"
                        android:layout_weight="1" >
    
        </RelativeLayout>
    
    </LinearLayout>
    

    Edit 2:

    Definitely works, just tried this:

    LinearLayout layoutContainer = new LinearLayout(this);
    layoutContainer.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
    
    // Arguments here: width, height, weight
    LinearLayout.LayoutParams childLp = new LinearLayout.LayoutParams(0, LayoutParams.FILL_PARENT, 1);
    
    RelativeLayout layoutLeft = new RelativeLayout(this);
    layoutContainer.addView(layoutLeft, childLp);
    
    RelativeLayout layoutRight = new RelativeLayout(this);
    layoutContainer.addView(layoutRight, childLp);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My android app currently has two layouts for its splash screen, portrait and landscape.
My android app has a two word app name, and the 2nd word doesn't
I am writing an Android app with three tabs, two designed in portrait mode,
I'm trying to develop a simple Android app, fixed in landscape mode. I am
I have a tab-based Android app. Currently, it does not support landscape mode -
Anyone know how can I disable screen rotation in my Android app when screen
I built a simple, once screen android app - it has edittext boxes for
I'm trying to get my app to change layouts when the orientation changes. This
I'm building an Android app and I want to copy the text value of
We have an Android app and a Web Service. We want to download part

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.