我有下面的代碼,我試圖大寫字符串的第一個字母。代碼如下:如何大寫動態按鈕字符串的第一個字母
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);
這基本上是http://stackoverflow.com/questions/5725892/how-to-capitalize-the-first-letter-of-word-in-a-string-的副本使用-java,但Stack則抱怨說,將它標記爲會產生一個循環的重複列表。 –