本文介绍了片段中的setContentView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将Activity转换为片段. setContentView上的错误标记.
I'm trying to convert a Activity to fragment. The error mark on setContentView.
这是我的代码
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_googlev2);
Init();
addMarkersToMap();
yStart = 21.102918;
yEnd = 20.960798;
xStart = 105.772762;
xEnd = 105.900650;
xNow = xStart;
yNow = yStart;
adapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_dropdown_item_1line);
textView = (AutoCompleteTextView) getView().findViewById(R.id.autoCompleteTextView1);
textView.setThreshold(3);
adapter.setNotifyOnChange(true);
textView.setAdapter(adapter);
textView.addTextChangedListener(new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before, int count){
autoCount = count;
autoS = s;
if(autoCount % 3 == 1) {
stCommand = "AutoCompleteTextView";
lp = new ExecuteTask();
lp.execute();
}
}
public void beforeTextChanged(CharSequence s, int start, int count, int after){ // TODO Auto-generated method stub
}
public void afterTextChanged(Editable s){
}
});
}
如何转换setContentView?
how to convert that setContentView ?
推荐答案
这不应放在onCreate中,您必须覆盖onCreateView
This shouldn't go in onCreate, you must override onCreateView
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.activity_googlev2, container, false);
return rootView;
}
这篇关于片段中的setContentView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!