Android 在片段的dialogfragment中未调用OnCreateView

Android 在片段的dialogfragment中未调用OnCreateView,android,android-fragments,android-dialogfragment,Android,Android Fragments,Android Dialogfragment,我有一个片段,单击按钮后执行或显示对话框片段。这个对话框片段显示了一个由代码生成的表,但是当我尝试单击该对话框上的按钮时,它会显示出来 当我在LogCat中跟踪它时,不会调用对话框片段onCreateView。有人能帮我解释一下吗?。我还不太擅长android编程,我知道我还有很多东西要学 下面是调用对话框片段的片段代码 public class fragment_schedule extends Fragment { ............... public fragment_sc

我有一个片段,单击按钮后执行或显示对话框片段。这个对话框片段显示了一个由代码生成的表,但是当我尝试单击该对话框上的按钮时,它会显示出来

当我在LogCat中跟踪它时,不会调用对话框片段onCreateView。有人能帮我解释一下吗?。我还不太擅长android编程,我知道我还有很多东西要学

下面是调用对话框片段的片段代码

public class fragment_schedule extends Fragment {

...............


public fragment_schedule(ArrayList<SubjSchedule> subj){
    subject = subj;
}
@SuppressWarnings("deprecation")
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

..................

showlstbtn = (Button) rootView.findViewById(R.id.button_showlstschd);
        showlstbtn.setOnClickListener(new OnClickListener(){

            @Override
        public void onClick(View v) {

            // TODO Auto-generated method stub
            FragmentTransaction ft = getActivity().getFragmentManager().beginTransaction();
            ft.addToBackStack(null);
            DialogFragment dialog = ShowLstDialog.newInstance(subject);
            dialog.show(ft, "dialog");
        }

    });

   ..........
public class ShowLstDialog extends DialogFragment {

private static final String TAG = ShowLstDialog.class.getSimpleName();
public static Context mContext;
public static TableLayout tl;
public static TableRow trh;
private static ArrayList<SubjSchedule> subject= new ArrayList<SubjSchedule>(); 

public static DialogFragment newInstance(ArrayList<SubjSchedule> subj) {
    // TODO Auto-generated method stub
    DialogFragment f = new DialogFragment();
    subject = subj;
    Log.v(TAG, subject.size()+"");
    return f;
}



 @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

    }


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    Log.v(TAG, "OnCreateView: " + subject.size()+"");
    View rootView = inflater.inflate(R.layout.fragment_dialog_showlst, container);
    //mEditText = (EditText) view.findViewById(R.id.txt_your_name);
    Log.v(TAG, "OnCreateView: " + subject.size()+"");
    getDialog().setTitle("");
    tl = (TableLayout) rootView.findViewById(R.id.tablelayout_schedlst);
    trh = new TableRow(getActivity());
    TextView[] tvh = new TextView[3];
    for(int i=0; i<3; i++){
        tvh[i] = new TextView(getActivity());
        tvh[i].setBackgroundResource(R.drawable.green2);
        tvh[i].setTextColor(getResources().getColor(R.color.LightCyan));
        tvh[i].setGravity(Gravity.CENTER);
        tvh[i].setPadding(30, 3, 30, 3);
        //tvh[i].setLayoutParams(params);
        trh.addView(tvh[i]);

    }

    tvh[0].setText("Subject");
    tvh[1].setText("Description");
    tvh[2].setText("Instructor");

    TableRow[] tr = new TableRow[subject.size()];
    for(int i=0; i<subject.size();i++){
        tr[i] = new TableRow(getActivity());
        TextView[] tv1 = new TextView[3];


        for(int k=0; k<3; k++){
            tv1[k] = new TextView(getActivity());
            tv1[k].setBackgroundResource(R.drawable.btn_default_disabled_holo_dark);
            tv1[k].setTextColor(getResources().getColor(R.color.list_background_pressed));
            tv1[k].setGravity(Gravity.CENTER);
            tv1[k].setPadding(30, 3, 30, 3);
            //tvh[i].setLayoutParams(params);
            tr[i].addView(tv1[i]);

        }

        tv1[0].setText(subject.get(i).getcn());
        tv1[1].setText(subject.get(i).getd());
        tv1[2].setText(subject.get(i).geti());
        tl.addView(tr[i]);

    }
    return rootView;
}



}
  <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:background="@color/LightCyan"
        android:scrollbars="vertical" >

        <HorizontalScrollView
            android:id="@+id/horizontalScrollView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:orientation="horizontal" >

                <TableLayout
                    android:id="@+id/tablelayout_schedlst"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:stretchColumns="*" >
                </TableLayout>
            </RelativeLayout>
        </HorizontalScrollView>
    </ScrollView>

</RelativeLayout>
公共类片段\u计划扩展片段{
...............
公共碎片清单(ArrayList Subc){
主语=主语;
}
@抑制警告(“弃用”)
@凌驾
创建视图上的公共视图(布局、充气机、视图组容器、,
Bundle savedInstanceState){
..................
showlstbtn=(按钮)rootView.findviewbyd(R.id.Button\u showlstschd);
showlstbtn.setOnClickListener(新的OnClickListener(){
@凌驾
公共void onClick(视图v){
//TODO自动生成的方法存根
FragmentTransaction ft=getActivity().getFragmentManager().beginTransaction();
ft.addToBackStack(空);
DialogFragment dialog=ShowLstDialog.newInstance(主题);
dialog.show(ft,“dialog”);
}
});
..........
这是我的对话片段

public class fragment_schedule extends Fragment {

...............


public fragment_schedule(ArrayList<SubjSchedule> subj){
    subject = subj;
}
@SuppressWarnings("deprecation")
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

..................

showlstbtn = (Button) rootView.findViewById(R.id.button_showlstschd);
        showlstbtn.setOnClickListener(new OnClickListener(){

            @Override
        public void onClick(View v) {

            // TODO Auto-generated method stub
            FragmentTransaction ft = getActivity().getFragmentManager().beginTransaction();
            ft.addToBackStack(null);
            DialogFragment dialog = ShowLstDialog.newInstance(subject);
            dialog.show(ft, "dialog");
        }

    });

   ..........
public class ShowLstDialog extends DialogFragment {

private static final String TAG = ShowLstDialog.class.getSimpleName();
public static Context mContext;
public static TableLayout tl;
public static TableRow trh;
private static ArrayList<SubjSchedule> subject= new ArrayList<SubjSchedule>(); 

public static DialogFragment newInstance(ArrayList<SubjSchedule> subj) {
    // TODO Auto-generated method stub
    DialogFragment f = new DialogFragment();
    subject = subj;
    Log.v(TAG, subject.size()+"");
    return f;
}



 @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

    }


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    Log.v(TAG, "OnCreateView: " + subject.size()+"");
    View rootView = inflater.inflate(R.layout.fragment_dialog_showlst, container);
    //mEditText = (EditText) view.findViewById(R.id.txt_your_name);
    Log.v(TAG, "OnCreateView: " + subject.size()+"");
    getDialog().setTitle("");
    tl = (TableLayout) rootView.findViewById(R.id.tablelayout_schedlst);
    trh = new TableRow(getActivity());
    TextView[] tvh = new TextView[3];
    for(int i=0; i<3; i++){
        tvh[i] = new TextView(getActivity());
        tvh[i].setBackgroundResource(R.drawable.green2);
        tvh[i].setTextColor(getResources().getColor(R.color.LightCyan));
        tvh[i].setGravity(Gravity.CENTER);
        tvh[i].setPadding(30, 3, 30, 3);
        //tvh[i].setLayoutParams(params);
        trh.addView(tvh[i]);

    }

    tvh[0].setText("Subject");
    tvh[1].setText("Description");
    tvh[2].setText("Instructor");

    TableRow[] tr = new TableRow[subject.size()];
    for(int i=0; i<subject.size();i++){
        tr[i] = new TableRow(getActivity());
        TextView[] tv1 = new TextView[3];


        for(int k=0; k<3; k++){
            tv1[k] = new TextView(getActivity());
            tv1[k].setBackgroundResource(R.drawable.btn_default_disabled_holo_dark);
            tv1[k].setTextColor(getResources().getColor(R.color.list_background_pressed));
            tv1[k].setGravity(Gravity.CENTER);
            tv1[k].setPadding(30, 3, 30, 3);
            //tvh[i].setLayoutParams(params);
            tr[i].addView(tv1[i]);

        }

        tv1[0].setText(subject.get(i).getcn());
        tv1[1].setText(subject.get(i).getd());
        tv1[2].setText(subject.get(i).geti());
        tl.addView(tr[i]);

    }
    return rootView;
}



}
  <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:background="@color/LightCyan"
        android:scrollbars="vertical" >

        <HorizontalScrollView
            android:id="@+id/horizontalScrollView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:orientation="horizontal" >

                <TableLayout
                    android:id="@+id/tablelayout_schedlst"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:stretchColumns="*" >
                </TableLayout>
            </RelativeLayout>
        </HorizontalScrollView>
    </ScrollView>

</RelativeLayout>
public类ShowLstDialog扩展了DialogFragment{
私有静态最终字符串标记=ShowLstDialog.class.getSimpleName();
公共静态语境;
公共静态布局;
公共静态表行trh;
私有静态ArrayList subject=新ArrayList();
公共静态对话框Fragment newInstance(ArrayList Subc){
//TODO自动生成的方法存根
DialogFragment f=新的DialogFragment();
主语=主语;
Log.v(标记,subject.size()+);
返回f;
}
@凌驾
创建时的公共void(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
}
@凌驾
创建视图上的公共视图(布局、充气机、视图组容器、,
Bundle savedInstanceState){
Log.v(标记“OnCreateView:+subject.size()+”);
视图根视图=充气机。充气(R.layout.fragment\u对话框\u showlst,容器);
//mEditText=(EditText)view.findViewById(R.id.txt\u您的姓名);
Log.v(标记“OnCreateView:+subject.size()+”);
getDialog().setTitle(“”);
tl=(TableLayout)rootView.findviewbyd(R.id.TableLayout\u schedlst);
trh=新表行(getActivity());
TextView[]tvh=新的TextView[3];
对于(int i=0;i改变此值

public static DialogFragment newInstance(ArrayList<SubjSchedule> subj) {
    // TODO Auto-generated method stub
    DialogFragment f = new DialogFragment();
    subject = subj;
    Log.v(TAG, subject.size()+"");
    return f;
}
public静态对话框fragment newInstance(ArrayList subc){
//TODO自动生成的方法存根
DialogFragment f=新的DialogFragment();
主语=主语;
Log.v(标记,subject.size()+);
返回f;
}

publicstaticshowlstdialog新实例(arraylistsubc){
//TODO自动生成的方法存根
ShowLstDialog f=新建ShowLstDialog();
主语=主语;
Log.v(标记,subject.size()+);
返回f;
}
而且一定要读

您可以实现onCreateDialog(Bundle)来创建自己的自定义对话框对象,而不是(或除了)实现onCreateView(LayoutInflater、ViewGroup、Bundle)来生成对话框内部的视图层次结构

因此,您应该使用:

@Override
public Dialog onCreateDialog(Bundle savedInstanceState)
取代:

public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState)
而不是

public static DialogFragment newInstance(...) {
    DialogFragment f = new DialogFragment();
    return f;
}


也可以使用Bundle和setArguments,getArguments来传递参数。

将此
对话框片段f=new DialogFragment();
更改为
ShowLstDialog f=new ShowLstDialog()
@Raghunandan,为什么不将其作为答案发布?视图在哪里?如果要使用
视图
,请参阅。