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.
我是一个编程菜鸟,我在试图弄清楚如何创建另一个页面并能够点击主页上的按钮来访问新页面时遇到了麻烦。
为此,您需要了解Android中的活动知识以及用于交互活动通信的Intent知识。之后,您将必须学习手势及其在 Android 中的实现。
请注意:这可能是您的第一个问题。这就是为什么你不会理解你得到的反对票。阅读 Stack Overflow 的 about 页面,了解该网站的全部内容。
只需为您的按钮设置 Onclicklistener。在 Onclick() 上,使用 Intent 移动到你的下一个活动。活动,这里的意思是视图,根据你。
如果你想要的话,对于 Xamarin
Xamarin 意图
像这样
menu.Click += delegate { var intent459 = new Intent(this, typeof(MenuTopActivity)); StartActivity(intent459); };