从片段中未在对话框片段中调用OnCreateView [英] OnCreateView not called in a dialogfragment from a fragment

查看:55
本文介绍了从片段中未在对话框片段中调用OnCreateView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个片段,一旦单击按钮,该片段就会执行或显示对话框片段.该对话框片段显示了一个由代码生成的表,但是当我尝试单击该按钮时,将显示该表

I have a fragment that executes or display a dialog fragment once a button is clicked. This dialog fragment displays a table generated by code, however when I try to click the button on this is displayed

当我在LogCat中对其进行跟踪时,不会调用onCreateView上的对话框片段.有人可以帮我解释一下吗?我在android编程方面还不够好,我知道我还有很多东西要学习.

And when I trace it in the LogCat the dialog fragments onCreateView is not called. Can somebody help or explain this to me?. Im not that good in android programming yet and I know i still have a lot to learn.

这是调用对话框片段的片段代码

Here is the code of the fragment that calls the dialog fragment

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文件

and here is the xml file of the dialog fragment

  <?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 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 static ShowLstDialog newInstance(ArrayList<SubjSchedule> subj) {
    // TODO Auto-generated method stub
    ShowLstDialog f = new ShowLstDialog();
    subject = subj;
    Log.v(TAG, subject.size()+"");
    return f;
}

并阅读

http://developer.android.com/reference/android/app/DialogFragment.html

这篇关于从片段中未在对话框片段中调用OnCreateView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆