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 6138899
In Process

The Archive Base Latest Questions

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

looking at the pictures maybe it’s obvious what the problem is. The button row

  • 0

looking at the pictures maybe it’s obvious what the problem is.
The button row insist on getting to big in portrait mood.

Remove the

android:layout_below="@+id/cb_delete_files_option_activity"

then the

@+id/cb_delete_files_option_activity

checkbox is not visible in landscape mood.

anyone have some ide?

enter image description here

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/ScrollView01"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
    >
    <RelativeLayout android:id="@+id/topRelativeLayout"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:background="@color/send_background_color" 

        >

        <TextView android:id="@+id/txt1_option_activity"
            android:text = ""
            android:textColor="#FFFFFF"
            android:textSize="20sp"
            android:layout_marginTop="20dip"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:gravity="center_vertical|center_horizontal"
            android:layout_alignParentTop="true"
        />
        <TextView
            android:id="@+id/txt2_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textSize="20sp"
            android:textColor="#ffffffff"
            android:layout_centerHorizontal="true"
            android:layout_below="@+id/txt1_option_activity"
            >
        </TextView>
        <View android:id="@+id/just_a_line_option_activity"
            android:background="#ffffff"
            android:layout_width = "fill_parent"
            android:layout_height="1dip"
            android:layout_below="@+id/txt2_option_activity"
            >
        </View>

        <TextView
            android:id="@+id/txt3_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20sp"
            android:textColor="#ffffffff"
            android:layout_below="@+id/just_a_line_option_activity"
            android:layout_centerHorizontal="true"
            >
        </TextView>

        <TextView
            android:id="@+id/txt_spinner_filesize_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="some settings"
            android:textColor="#ffffffff"
            android:layout_below="@+id/txt3_option_activity"
            android:layout_toRightOf="@+id/spinner_filesize_option_activity"
            >
        </TextView>
        <Spinner android:id="@+id/spinner_filesize_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/txt3_option_activity"
            >
        </Spinner>

        <TextView
            android:id="@+id/txt_spinner_notificationtype_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="some settings"
            android:textColor="#ffffffff"
            android:layout_below="@+id/spinner_filesize_option_activity"
            android:layout_toRightOf="@+id/spinner_notificationtype_option_activity"

            >
        </TextView>
        <Spinner android:id="@+id/spinner_notificationtype_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:layout_below="@+id/spinner_filesize_option_activity"

            >
        </Spinner>
        <TextView
            android:id="@+id/txt_spinner_delay_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="some settings"
            android:textColor="#ffffffff"
            android:layout_below="@+id/spinner_notificationtype_option_activity"
            android:layout_toRightOf="@+id/etx_delay_option_activity"

            >
        </TextView>
        <EditText android:id="@+id/etx_delay_option_activity"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:layout_marginTop="10dip"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/spinner_notificationtype_option_activity"
            android:singleLine="true"
            android:text="0"
        />
        <CheckBox
            android:id="@+id/cb_delete_files_option_activity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="some settings"
            android:layout_below="@+id/etx_delay_option_activity"
            android:layout_alignParentLeft="true"

            >
        </CheckBox>

        <LinearLayout android:id="@+id/linerLayout_send_button_row"
            android:orientation="horizontal"
            android:background="@android:drawable/bottom_bar" 
            android:paddingLeft="4.0dip"
            android:paddingTop="5.0dip" 
            android:paddingRight="4.0dip"
            android:paddingBottom="1.0dip" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true" 
            android:layout_below="@+id/cb_delete_files_option_activity"

            >
            <Button android:id="@+id/btn_send_activity_send_nr_two"
                android:layout_width="0.0dip"
                android:layout_height="fill_parent"
                android:text="Send"
                android:layout_weight="1.0"

            />
            <Button android:id="@+id/btn_more_activity_send_nr_two"
                android:layout_width="0.0dip"
                android:layout_height="fill_parent"
                android:text="More"
                android:layout_weight="1.0"

            />
        </LinearLayout>
    </RelativeLayout>
</ScrollView>
  • 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-23T17:55:24+00:00Added an answer on May 23, 2026 at 5:55 pm

    Wrap your entire LinearLayout containing the buttons inside a NEW RelativeLayout, placing the android:layout_below="@+id/cb_delete_files_option_activity" inside it instead of in the LinearLayout:

        <!-- the rest of your xml -->
        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/cb_delete_files_option_activity"
        >
            <LinearLayout android:id="@+id/linerLayout_send_button_row"
                android:orientation="horizontal"
                android:background="@android:drawable/bottom_bar" 
                android:paddingLeft="4.0dip"
                android:paddingTop="5.0dip" 
                android:paddingRight="4.0dip"
                android:paddingBottom="1.0dip" 
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                >
                <Button android:id="@+id/btn_send_activity_send_nr_two"
                    android:layout_width="0.0dip"
                    android:layout_height="fill_parent"
                    android:text="Send"
                    android:layout_weight="1.0"
    
                />
                <Button android:id="@+id/btn_more_activity_send_nr_two"
                    android:layout_width="0.0dip"
                    android:layout_height="fill_parent"
                    android:text="More"
                    android:layout_weight="1.0"
    
                />
            </LinearLayout>
        </RelativeLayout>
        <!-- the rest of your xml -->
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking to use a PHP library for uploading pictures to a web
I am looking for an economically sound solution to store pictures long time. I
I've been looking at Wordpress plugins for photo galleries (so maybe this is for
we have a DB which stores users who may have pictures. I am looking
UPDATE maybe changing the Bitmap size in the new Activity may fix the problem
I have been looking arund at implementing Gravatar for all my users profile pictures
Lets say I let the customer upload up to 5 pictures. I'm looking for
Looking at the example code in the docs http://developer.android.com/reference/android/content/Context.html#getExternalFilesDir%28java.lang.String%29 File path = getExternalFilesDir(Environment.DIRECTORY_PICTURES); It
I'm looking for a plugin or gem that has the picture of letters or
Looking for feedback on : http://code.google.com/p/google-perftools/wiki/GooglePerformanceTools

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.