I have the following code in which I am trying to capitalize the first letter of the string. The code is as follows:
final Button headerButton = (Button) View.inflate(EikonApplication.getAppContext(), R.layout.manage_markets_category_header_button, null);
headerButton.setOnClickListener(this);
headerButton.setText(header.getCategoryTitle().toLowerCase());
linearLayout.addView(headerButton);