我正在尝试使用findVIEwByID()方法为我创建的按钮分配一个动作,但是它给了我错误:
android.support.v7.app.AppCompatActivity中的findVIEwByID(int)无法应用于(androID.Widget.button)
在线:
buttonStudentAccess = (button) findVIEwByID(buttonStudentAccess);buttonGuestAccess = (button) findVIEwByID(buttonGuestAccess);
我的代码如下:
import androID.content.Intent;import androID.os.Bundle;import androID.support.v7.app.AppCompatActivity;import androID.vIEw.VIEw;import androID.Widget.button;public class UserTypeSelection extends AppCompatActivity implements VIEw.OnClickListener{private button buttonStudentAccess;private button buttonGuestAccess;@OverrIDeprotected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_user_type_selection); buttonStudentAccess = (button) findVIEwByID(buttonStudentAccess); buttonGuestAccess = (button) findVIEwByID(buttonGuestAccess); buttonStudentAccess.setonClickListener(this); buttonGuestAccess.setonClickListener(this);}@OverrIDepublic voID onClick(VIEw vIEw) { if (vIEw == buttonStudentAccess) {} if (vIEw == buttonGuestAccess) { //startActivity(new Intent(this, MainActivity.class)); }}
相应的xml文件包含按钮
<button androID:text="Guest" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_below="@+ID/buttonStudentAccess" androID:layout_alignleft="@+ID/buttonStudentAccess" androID:layout_alignStart="@+ID/buttonStudentAccess" androID:layout_margintop="30dp" androID:ID="@+ID/buttonGuestAccess" androID:layout_alignRight="@+ID/buttonStudentAccess" androID:layout_alignEnd="@+ID/buttonStudentAccess" /><button androID:text="Student" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_margintop="30dp" androID:ID="@+ID/buttonStudentAccess" androID:layout_below="@+ID/textVIEw2" androID:layout_centerHorizontal="true" />
我使用相同的语法来创建和分配我的登录和注册类中的按钮的 *** 作,它没有创建此错误.感谢任何帮助,谢谢
解决方法:
您需要指定从哪里获取ID“buttonStudentAccess”.所以这是你如何找到视图:
buttonStudentAccess = (button) findVIEwByID(R.ID.buttonStudentAccess);
要指定按钮或任何其他视图位于“resources”包中,您将其称为R和.ID指定您要使用其ID来获取视图.
总结以上是内存溢出为你收集整理的android – 使用findViewById方法时出错全部内容,希望文章能够帮你解决android – 使用findViewById方法时出错所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)