我想打一個觀點有兩種不同的顏色,所以我想在我的fragment
安卓:根據需要
TextView welcome = (TextView) view.findViewById(R.id.welcome_text_ID);
View sample = getActivity().findViewById(R.string.sample);
welcome.setText("Welcome to " + sample);
這個代碼文本字符串資源不工作,它說「歡迎來到空」
然後我嘗試這個
TextView welcome = (TextView) view.findViewById(R.id.welcome_text_ID);
welcome.setText("Welcome to " + (R.string.sample));
,我也得到 「歡迎x1029203」
這是在實際的R.java
文件中找到的string
值的int
的參考。任何幫助表示感謝。
再次感謝您!答案接受...在9分鐘=) – IrishWhiskey 2013-05-11 23:57:02