我是Android新手。我想使用Expandable List View Fragment class>>
这是我的片段类
import om.hct.muscat.R;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class AbouthctFragment extends Fragment {
public AbouthctFragment(){}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_about_hct, container, false);
return rootView;
}
}
答案 0 :(得分:0)