Android : 如何获取textview值并进行比较

Android : How to get the textview value and compare

我是新手 所以 如何获取 textview 的数字值并比较它,如果它小于 100 例如一些其他 textview 文本更改为我想要的任何内容????

例如,如果 {textview1 < 25 || > 100} 我想将 textview2 文本更改为“你好” else textview2 文本“再见”

我正在使用片段 Activity

应该是这样的

textview2.Text = if (textview1.Text.ToInt() < 25 || textview1.Text.ToInt() > 100) "Hello" else "Goodbye"