我第一次尝试用java/android编码,我有点沮丧,因为我多年的c#知识似乎对我没有多大帮助。
目前,我尝试创建一个按钮单击事件,该事件应绑定到动态加载的视图中的按钮。
我的部分活动:
private Button myButton;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
String selectedMenu=getArguments().getString(ARG_SECTION_NUMBER);
if (selectedMenu==getString(R.string.title_test)) {
View rootView = inflater.inflate(R.layout.fragment_test, container, false);
myButton=rootView.findViewById("@+id/buttonTest"); // ERROR?
myButton.setOnClickListener(this);
return rootView;
}
return null;
}
public void onClick(View v) {
if (v==myButton) {
// magic stuff
}
}
我的按钮定义:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test starten"
android:id="@+id/buttonTest"
android:layout_gravity="center_horizontal"
android:onClick="TestSoap_OnClick" />
在"错误"行中,我尝试从视图中获取按钮。如何访问它?
只是为了我的理解:作为一个按钮似乎是一个视图:Java中的"View"与C# WinForms中的"Control"大致相同吗?
替换 myButton = rootView.findViewById("@+id/buttonTest");
myButton = (Button) rootView.findViewById(R.id.buttonTest);
预期的int
是已创建的视图的 id,该视图在 R.id
中引用。
尝试创建一个函数来处理您的onClick:在您的情况下,如下所示:
public void TestSoap_OnClick(View view){
doSomething();
}
然后,当您按下按钮时,它将自动调用此函数,因为您有:
android:onClick="TestSoap_OnClick"
尝试从xml中删除android:onClick="TestSoap_OnClick"行
并替换myButton.setOnClickListener(this);with myButton.setOnClickListener(onClick)