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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T01:26:06+00:00 2026-06-01T01:26:06+00:00

This is what i am doing in coding i want to create controls on

  • 0

This is what i am doing in coding i want to create controls on button click. The number of times the user will click i want to add controls for the same number of time..
I have to add these controls in relative layout. which i had already created in xml layout with one set of controls already in it.. and want to make it working for more controls if user want to edit.

    View DynamicView= new View(this);
    DynamicView.setId(123);                
    DynamicView.setLayoutParams(new LayoutParams(1, LayoutParams.MATCH_PARENT))

The following is XML layout code.

<View
           android:layout_width="match_parent"
           android:layout_height="1dp"
           android:background="@android:color/black" />

problems:-
1) dont want to give ids this way 🙁

  DynamicView.setId(123);

want to assign such ids as we can assign in xml layout

android:id="@+id/spnrIngredients1"

2) how to give values for relative layouts in coding such as

android:layout_toRightOf="@id/tvIngredientsName"
android:layout_toLeftOf="@id/tvIngredientsName"
android:layout_below="@id/tvIngredientsName"
android:layout_above="@id/tvIngredientsName"

3) how to give values for background colors.
it is not accepting hexadecimal codes or something else.. what type of int values it is asking for..?

  • 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-01T01:26:07+00:00Added an answer on June 1, 2026 at 1:26 am

    2) Use the LayoutParams to set the rules for placing the views in the RelativeLayout:

    Button b = new Button(this);
    RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
        RelativeLayout.LayoutParams.WRAP_CONTENT,
        RelativeLayout.LayoutParams.WRAP_CONTENT);
    lp.addRule(RelativeLayout.BELOW, viewID);
    b.setLayoutParams(lp);
    b.setText("Added at Bottom");
    mParent.addView(b, lp);
    

    The above code will place the Button bellow the view with the id viewID.

    3) setBackgroundColor()(I think this is the method you are using) requires an int representing the Color, you can set it in that method this ways:

    Color.RED 
    Color.parse(Color.parseColor("#0077cc"))
    android.R.color.black
    

    1) You could set your ids in a values/ids.xml file and later set them to your views and then refer the views by those ids:

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <item type="id" name="myfirstid" />    
    </resources>
    

    Now you can use the id R.id.myfirstid in your code(I don’t know if this is what you want).
    NOTE:
    I don’t know if this is recommended.

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

Sidebar

Related Questions

I'm doing a bit of coding, where I have to write this sort of
This is my first time doing this sort of project so apologies if the
I am doing this: <div onclick='alert("xxx")'>Click me!</div> and I see that alert but I
Im doing this project where i need to download files through a webservice (images,
I'm doing this system Stacked and I am creating the search function. And in
I am doing this in groovy. Input: hip_abc_batch hip_ndnh_4_abc_copy_from_stgig abc_copy_from_stgig hiv_daiv_batch hip_a_de_copy_from_staging abc_a_de_copy_from_staging I
I am doing this with the following: [[self navigationController] setNavigationBarHidden:YES animated:YES]; and also I
I am doing this: @person.attributes = params[:person] Can anyone give me a clue as
I'm doing this query: SomeObject.objects.annotate(something=Avg('something')).order_by(something).all() I normally have an aggregate field in my model
I tried doing this: [toolbar setTint:[UIColor colorWithPatternImage:[UIImage imageNamed:@thingFromMyBundle.png]]]; but it just ended up black.

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.