xamarin android c#Edittext自动滚动到底部

提兵百万西湖上,立马吴山第一峰!这篇文章主要讲述xamarin android c#Edittext自动滚动到底部相关的知识,希望能为你提供帮助。
我想在Edittext中自动滚动到底部。
我在网上找不到任何关于它的内容。它只关于ListView。
有没有任何解决方案来使用Edittext?
谢谢
答案您可以使用EditText.ScrollTo方法并计算所需的scrollY:

etMain = FindViewById< EditText> (Resource.Id.etMain); ...//get the lineHeight int lineHeight = etMain.LineHeight; //get the line Count int lineCount = etMain.LineCount+1; //calculate the scrollY; int scrollY = lineHeight * lineCount; //scroll to the bottom etMain.ScrollTo(0, scrollY);

另一答案我尝试使用ScrollTo,但它不起作用。
但是使用RequestFocus它有效:)
【xamarin android c#Edittext自动滚动到底部】谢谢

    推荐阅读