我有一个由微调器和按钮组成的片段。您可以使用微调器选择四个选项之一,然后按钮将转到下一个活动。
为了实现微调器,我需要在Fragment上实现onItemSelectedListener,但是要使用我需要实现onClickListener的按钮。 但我不能两个都做? 我本以为这是一个非常简单的事情,并且在View上需要多个不同的事件监听器必须是常见的,那么如何实现呢?
以下是我正在使用的代码: -
public class FragmentTypeSelect extends Fragment 实现OnItemSelectedListener {
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState){
// set the view so that it can be referenced
View theView = inflater.inflate(R.layout.fragment_type_select,
container,false);
// set OnClickListener for the button
setUpClickListener(theView,R.id.but_select);
//===============================
// NEW TYPE SPINNER
//===============================
Spinner spinner = (Spinner) theView.findViewById(R.id.new_type_spinner);
spinner.setOnItemSelectedListener((OnItemSelectedListener) this);
// Create an ArrayAdapter using the string array and a default spinner layout
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(getActivity(),
R.array.types_array, android.R.layout.simple_spinner_item);
// Specify the layout to use when the list of choices appears
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// Apply the adapter to the spinner
spinner.setAdapter(adapter);
return theView;
}
public void onItemSelected(AdapterView<?> parent, View view,
int pos, long id)
{
TextView headingText = (TextView)getView().findViewById(R.id.new_diet_type_text_heading);
TextView detailText = (TextView)getView().findViewById(R.id.new_diet_type_text_detail);
if (pos == 0)
{
headingText.setText(R.string.heading_type_1);
detailText.setText(R.string.detail_type_1);
}
if (pos == 1)
{
headingText.setText(R.string.heading_type_2);
detailText.setText(R.string.detail_type_2);
}
if (pos == 2)
{
headingText.setText(R.string.heading_type_3);
detailText.setText(R.string.detail_type_3);
}
if (pos == 3)
{
headingText.setText(R.string.heading_type_4);
detailText.setText(R.string.detail_type_4);
}
}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub
}
public void onClick(View view){
Toast.makeText(getActivity(), "Clicked", Toast.LENGTH_LONG).show();
}
private void setUpClickListener(View theView, int childViewID) {
View childView = theView.findViewById(childViewID);
childView.setOnClickListener((OnClickListener) this);
}
}
最初我只是让旋转器进入并且工作正常。然后我尝试在onCreateView中使用set OnClickListener放入按钮功能,并添加额外的onClick和setUpClickListener方法。 这正是我在其他地方完成的方式,但在其他情况下,我还没有其他事件要处理,并使类实现了onClickListener。 Java不支持多个接口实现(据我所知),因此我的问题。
希望你能提供帮助。我可能有点厚,但我对整个OO以及Android仍然很陌生。
答案 0 :(得分:32)
你可以这样做:
public class FragmentTypeSelect extends Fragment
implements OnItemSelectedListener, OnClickListener {
答案 1 :(得分:0)
public class Home extends AppCompatActivity implements ImageAdapter.OnItemClickListener ,Filterable {
然后单击红色灯泡并实施该方法。 一个接口的实现可以通过用逗号分隔接口实现。