下面是我自然会这样做的,有没有其他可行的方法呢?
public void error_checker(String Text_ID, int id,int id_2,String greater_num){
if (id>id_2){
TextView TextView = findViewById(R.id.Text_ID);
TextView.setText(Integer.parseInt("You Answer Can't be Greater Than"+(greater_num));
} else {
}
}
1条答案
按热度按时间uyto3xhc1#
你可以这样做:
其中text\u id是视图的id(不带
R.id.
前缀)