Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过 TextLine1 或 TextLine2对多按钮列表或组件组进行排序?
您可以像往常一样执行排序算法。
要对多个按钮进行排序,只需删除它们并根据该顺序添加它们(假设您使用的是布局管理器,例如框布局)。如果需要,您还可以使用 animateLayout 将它们设置为动画。
Random r = new Random(); List<object> myList = new List<object>(); for (int i = 0; i < 100; i++) myList.Add(new { A = r.Next(), B = r.Next() }); m