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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:04:38+00:00 2026-06-17T08:04:38+00:00

I have a relativeLayout inside a linearLayout . relativeLayout contains buttons on the left,

  • 0

I have a relativeLayout inside a linearLayout. relativeLayout contains buttons on the left, and a terminal&edittext on the right. I want only part of this relativeLayout to be scrollable, the buttons on the left. However If I try to do this the whole thing becomes scrollable. If I separate the buttons on the left from the terminal on the right, into two different relativeLayouts, the buttons become scrollable but the terminal and edittext now appear below the buttons instead of to the right of them.
Current screenshot: https://i.stack.imgur.com/PHxc8.png

How do i jsut make the buttons scroll while keeping the terminal where it is? Why do the relative commands to be below/to the right of buttons not work if I separate them into two different relativeLayouts?

   <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/MainLayout"
    android:background="@drawable/wallpaper"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >


       <LinearLayout android:id="@+id/topButtons" 
        android:layout_margin="4dip"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <Button android:id="@+id/deviceConnect"
            android:layout_margin="8dip"
            android:layout_weight="3"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:text="Connect"/>
        <LinearLayout android:orientation="vertical"
            android:layout_weight="1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <LinearLayout android:orientation="horizontal"
                android:layout_margin="8dip"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
                <TextView android:text="Connected Adapter:"
                    android:layout_gravity="center_vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
                <Spinner android:id="@+id/deviceSpinner"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:drawSelectorOnTop="true"/>
                <TextView android:id="@+id/currentSettings" 
                    android:layout_marginLeft="8dip"
                    android:text="Current Settings: Not Connected"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical"/>
            </LinearLayout>
            <LinearLayout android:orientation="horizontal"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Baud:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/baudSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Data:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/dataSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Parity:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/paritySpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Stop:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/stopSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>
        <Button android:id="@+id/updateSettings"
            android:layout_margin="8dip"
            android:layout_weight="3"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:text="Update\nSettings"/>
    </LinearLayout>

        <RelativeLayout 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">

       <Button android:id="@+id/Command"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Enable"/> 

       <Button android:id="@+id/Command2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Configure"
            android:layout_below="@+id/Command"/> 

       <Button android:id="@+id/Command3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Exit"
            android:layout_below="@+id/Command2"/> 

       <Button android:id="@+id/Command4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Show Version"
            android:layout_below="@+id/Command3"/> 

       <Button android:id="@+id/Command5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Show Run"
            android:layout_below="@+id/Command4"/> 

        <Button android:id="@+id/Command6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Backspace"
            android:layout_below="@+id/Command5"/> 

            <Button android:id="@+id/Command7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Backspace2"
            android:layout_below="@+id/Command6"/> 


        <jackpal.androidterm.emulatorview.EmulatorView
        android:id="@+id/emulatorView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:layout_toRightOf="@+id/Command4"
        android:layout_below="@+id/deviceConnect"
         android:layout_above="@+id/term_entry"  />

         <EditText
            android:id="@+id/term_entry"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:singleLine="true"
            android:imeOptions="actionNone|flagNoExtractUi"
            android:inputType="text|textImeMultiLine"
            android:layout_alignParentBottom="true"
             android:layout_toRightOf="@+id/Command7" />

         <Button
            android:id="@+id/term_entry_send"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/entry_send"
            android:layout_toRightOf="@+id/term_entry" 
            android:layout_alignParentBottom="true"
            />

        </RelativeLayout>  

</LinearLayout>

EDIT:
https://i.stack.imgur.com/W7gWP.png

        <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/MainLayout"
    android:background="@drawable/wallpaper"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >


       <LinearLayout android:id="@+id/topButtons" 
        android:layout_margin="4dip"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <Button android:id="@+id/deviceConnect"
            android:layout_margin="8dip"
            android:layout_weight="3"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:text="Connect"/>
        <LinearLayout android:orientation="vertical"
            android:layout_weight="1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <LinearLayout android:orientation="horizontal"
                android:layout_margin="8dip"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
                <TextView android:text="Connected Adapter:"
                    android:layout_gravity="center_vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
                <Spinner android:id="@+id/deviceSpinner"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:drawSelectorOnTop="true"/>
                <TextView android:id="@+id/currentSettings" 
                    android:layout_marginLeft="8dip"
                    android:text="Current Settings: Not Connected"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical"/>
            </LinearLayout>
            <LinearLayout android:orientation="horizontal"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Baud:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/baudSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Data:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/dataSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Parity:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/paritySpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
                <LinearLayout android:orientation="horizontal"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">
                    <TextView android:text="Stop:"
                        android:layout_gravity="center_vertical"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"/>
                    <Spinner android:id="@+id/stopSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true"/>
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>
        <Button android:id="@+id/updateSettings"
            android:layout_margin="8dip"
            android:layout_weight="3"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:text="Update\nSettings"/>
    </LinearLayout>

       <ScrollView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content">

        <RelativeLayout 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

       <Button android:id="@+id/Command"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Enable"/> 

       <Button android:id="@+id/Command2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Configure"
            android:layout_below="@+id/Command"/> 

       <Button android:id="@+id/Command3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Exit"
            android:layout_below="@+id/Command2"/> 

       <Button android:id="@+id/Command4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Show Version"
            android:layout_below="@+id/Command3"/> 

       <Button android:id="@+id/Command5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Show Run"
            android:layout_below="@+id/Command4"/> 

        <Button android:id="@+id/Command6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Backspace"
            android:layout_below="@+id/Command5"/> 

         <Button android:id="@+id/Command7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Settings"
            android:layout_below="@+id/Command6"/> 


        </RelativeLayout>  
</ScrollView>
         <RelativeLayout 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        <jackpal.androidterm.emulatorview.EmulatorView
        android:id="@+id/emulatorView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:layout_toRightOf="@+id/deviceConnect"
        android:layout_below="@+id/deviceConnect"
         android:layout_above="@+id/term_entry"  />

         <EditText
            android:id="@+id/term_entry"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:singleLine="true"
            android:imeOptions="actionNone|flagNoExtractUi"
            android:inputType="text|textImeMultiLine"
            android:layout_alignParentBottom="true"
             android:layout_toRightOf="@+id/Command4" />

         <Button
            android:id="@+id/term_entry_send"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/entry_send"
            android:layout_toRightOf="@+id/term_entry" 
            android:layout_alignParentBottom="true"
            />

        </RelativeLayout>  

</LinearLayout>
  • 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-17T08:04:38+00:00Added an answer on June 17, 2026 at 8:04 am
    <LinearLayout
        android:id="@+id/topButtons"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="4dip"
        android:orientation="horizontal" >
    
        <Button
            android:id="@+id/deviceConnect"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:layout_margin="8dip"
            android:layout_weight="3"
            android:text="Connect" />
    
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical" >
    
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="8dip"
                android:orientation="horizontal" >
    
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical"
                    android:text="Connected Adapter:" />
    
                <Spinner
                    android:id="@+id/deviceSpinner"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:drawSelectorOnTop="true" />
    
                <TextView
                    android:id="@+id/currentSettings"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical"
                    android:layout_marginLeft="8dip"
                    android:text="Current Settings: Not Connected" />
            </LinearLayout>
    
            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal" >
    
                <LinearLayout
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:orientation="horizontal" >
    
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_vertical"
                        android:text="Baud:" />
    
                    <Spinner
                        android:id="@+id/baudSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true" />
                </LinearLayout>
    
                <LinearLayout
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:orientation="horizontal" >
    
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_vertical"
                        android:text="Data:" />
    
                    <Spinner
                        android:id="@+id/dataSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true" />
                </LinearLayout>
    
                <LinearLayout
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:orientation="horizontal" >
    
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_vertical"
                        android:text="Parity:" />
    
                    <Spinner
                        android:id="@+id/paritySpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true" />
                </LinearLayout>
    
                <LinearLayout
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="8dip"
                    android:layout_weight="1"
                    android:orientation="horizontal" >
    
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_vertical"
                        android:text="Stop:" />
    
                    <Spinner
                        android:id="@+id/stopSpinner"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:drawSelectorOnTop="true" />
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>
    
        <Button
            android:id="@+id/updateSettings"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:layout_margin="8dip"
            android:layout_weight="3"
            android:text="Update\nSettings" />
    </LinearLayout>
    
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    
        <ScrollView
            android:id="@+id/scrllyout"
            android:layout_width="100dip"
            android:layout_height="wrap_content" >
    
            <RelativeLayout
                android:id="@+id/rltvlyout"
                android:layout_width="100dip"
                android:layout_height="wrap_content" >
    
                <Button
                    android:id="@+id/Command"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Enable" />
    
                <Button
                    android:id="@+id/Command2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/Command"
                    android:text="Configure" />
    
                <Button
                    android:id="@+id/Command3"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/Command2"
                    android:text="Exit" />
    
                <Button
                    android:id="@+id/Command4"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/Command3"
                    android:text="Show Version" />
    
                <Button
                    android:id="@+id/Command5"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/Command4"
                    android:text="Show Run" />
    
                <Button
                    android:id="@+id/Command6"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/Command5"
                    android:text="Backspace" />
    
                <Button
                    android:id="@+id/Command7"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/Command6"
                    android:text="Backspace2" />
            </RelativeLayout>
        </ScrollView>
    
        <jackpal.androidterm.emulatorview.EmulatorView
            android:id="@+id/emulatorView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/term_entry"
            android:layout_below="@+id/deviceConnect"
            android:layout_toRightOf="@+id/scrllyout"
            android:focusable="true"
            android:focusableInTouchMode="true" />
    
        <EditText
            android:id="@+id/term_entry"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_toRightOf="@+id/scrllyout"
            android:imeOptions="actionNone|flagNoExtractUi"
            android:inputType="text|textImeMultiLine"
            android:singleLine="true" />
    
        <Button
            android:id="@+id/term_entry_send"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_toRightOf="@+id/term_entry"
            android:text="@string/entry_send" />
    </RelativeLayout>
    

    use
    <scrollview>
    <view>
    <childs>
    </childs>
    </view>
    <scrollview>

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have EditText in my XML as <!-- Inside RelativeLayout --> <EditText android:id=@+id/edtEmail android:layout_width=match_parent
I have a TableLayout inside a Scrollview, I want to set a FIXED RelativeLayout
I have LinearLayout inside of RelativeLayout. I would like to change height of LinearLayout
I have this problem accessing TextView inside Relative Layout inside LinearLayout Let's say I
I have a LinearLayout view that already contains several elements. I want to add
I have row for ListView(listview is inside LinearLayout) like <?xml version=1.0 encoding=utf-8?> <RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android
I have a RelativeLayout inside a LinearLayout which I use to display some data:
I have a RelativeLayout with one child as <include another.xml> like this root.xml :
This seems simple but I've exhausted my Google search patience. I have a RelativeLayout
I have an ImageButton that I want to fill its parent RelativeLayout container for

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.