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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T19:55:02+00:00 2026-06-03T19:55:02+00:00

We are using 2 edittext, one to enter hours and one to enter Minutes.

  • 0

We are using 2 edittext, one to enter hours and one to enter Minutes.


int CountM; 
int CountT;

@Override   
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Mylabel = (EditText)findViewById(R.id.editText1);
    Hours = (EditText)findViewById(R.id.Timer);
    Minuttes = (EditText)findViewById(R.id.Minutter);


void StartTimer()
{
    int TotalT = ((CountT*60*60)+(CountM*60)*1000);

    mTextField = (TextView) findViewById(R.id.TimerTextView);
    CountDownTimer aCounter = new CountDownTimer(TotalT, 1000)
    {
         public void onTick(long millisUntilFinished) 
         {
             mTextField.setText("seconds remaining: " + millisUntilFinished / 1000);
         }
         public void onFinish() 
         {
             mTextField.setText("seconds remaining: " + CountM + CountT);
         }
    };
     aCounter.start();
}

As you can see we need to collect data from our Edittext from Hours into CountT and Minutes into CountM and spit those results out, get it down to seconds so we can set it to do a task 5 hours later.
We have tried with strings and converting them into Ints.
Any suggestions?

  • 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-03T19:55:06+00:00Added an answer on June 3, 2026 at 7:55 pm

    Assuming you have a Button in your layout, on clicking which, you need to start the timer, the code for the same would be:

    Button startBtn;
    @Override   
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    
        Mylabel = (EditText)findViewById(R.id.editText1);
        Hours = (EditText)findViewById(R.id.Timer);
        Minuttes = (EditText)findViewById(R.id.Minutter);
        startBtn = (Button)findViewById(R.id.startBtn);
        startBtn.setOnClickListener(new View.OnClickListener() {        
             @Override
             public void onClick(View v) {
                 try{
                     String hourStr = Hours.getText().toString();
                     CountT = Integer.parseInt(hourStr);
                     String minuteStr = Minuttes.getText().toString();
                     CountM = Integer.parseInt(minuteStr);
                     StartTimer();
                 }catch(NumberFormatException ex){
                     ex.printStackTrace();
                 }
             }
        });
    }
    

    A suggestion: While you are still learning, it would be a good idea to understand and follow the Java Code Conventions

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

Sidebar

Related Questions

I'm using Spinner,EditText and Button in one page.The spinner has these items ... Following:
I'm using the android.text.TextWatcher interface to listen to changes on an EditText in one
i am using an edittext for the user input in which user entered his
I'm trying to insert data into the SQLite database using get EditText, but I
When I am trying to display a text in EditText using setText() method the
i am using android:imeOptions=actionSearch in editText and my question is can i write my
I implemented a ListView using ArrayAdapter. Each listItem (row) contains EditText. When I try
I have a layout which has one large EditText view at the top +
I am having EditText and using the numbers inside the EditText for my variables.
I need to make an EditText which would accept only one character and only

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.