如何将此popup.xml添加到此片段?

时间:2016-06-17 18:43:58

标签: android android-fragments

你好我想为一个片段添加一个弹出窗口我尝试了很多东西,但我还没有。如果有人帮助我会很棒。

这是我的片段代码;

public class Info extends Fragment {

public Info() {
    // Required empty public constructor
}

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

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.info, container, false);
}

这是我的fragment.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/buttonShowCustomDialog"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show Custom Dialog" />

</LinearLayout>

这是我的popup.xml

<?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" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:src="@drawable/pozitif"
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp" />

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:text="dfdfdsfs"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:layout_toRightOf="@+id/image"/>/>

    <Button
        android:id="@+id/dialogButtonOK"
        android:layout_width="100px"
        android:layout_height="wrap_content"
        android:text=" Ok "
        android:layout_marginTop="5dp"
        android:layout_marginRight="5dp"
        android:layout_below="@+id/image"
        />

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

您可以使用DialogFragment。

而不是使用片段扩展您的活动,使用DialogFragment

在DailogFragment Activity的createView上,你的布局会膨胀

View v = inflater.inflate(R.layout.fragment_dialog, container, false);

找到您的视图元素

TextView Message = (TextView) v.findViewById(R.id.text_view1);

要调用DailogFragment,请使用此

 MyDialogFragment dialog = MyDialogFragment.newInstance();
 dialog.show(getActivity().getFragmentManager(), "MyDialogFragment");

有关此内容的更多信息,请查看此链接 https://developer.android.com/reference/android/app/DialogFragment.html

相关问题