我正在尝试显示几乎全屏的 DialogFragment。但我不知何故不能这样做。
我展示片段的方式直接来自 android 开发者文档
FragmentManager f = ((Activity)getContext()).getFragmentManager(); FragmentTransaction ft = f.beginTransaction(); Fragment prev = f.findFragmentByTag("dialog"); if (prev != null) { ft.remove(prev); } ft.addToBackStack(null); // Create and show the dialog. DialogFragment newFragment = new DetailsDialogFragment(); newFragment.show(ft, "dialog");
我知道天真地试图将片段中的 RelativeLayout 设置为 fill_parent 和一些 minWidth 和 minHeight。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:minWidth="1000px" android:minHeight="600px" android:background="#ff0000">
我知道期望 DialogFragment 填满屏幕的大部分。但我似乎只在垂直方向上调整大小,但只在水平方向上调整一些固定宽度。
我还尝试在代码中设置窗口属性,如下所示:http ://groups.google.com/group/android- developers/browse_thread/thread/f0bb813f643604ec 。但这也无济于事。
我可能对 Android 如何处理对话框有误解,因为我是全新的。我怎么能做这样的事情?有没有其他方法可以达到我的目标?
Android 设备: 华硕 EeePad Transformer Android 3.0.1
更新: 我现在设法将其全屏显示,片段中包含以下代码
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setStyle(STYLE_NO_FRAME, android.R.style.Theme_Holo_Light); }
不幸的是,这不是我想要的。我肯定需要在对话框周围有一个小的“填充”来显示背景。
任何想法如何做到这一点?
尝试切换到 aLinearLayout而不是RelativeLayout. 测试时我的目标是 3.0 Honeycomb api。
LinearLayout
RelativeLayout
public class FragmentDialog extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button button = (Button) findViewById(R.id.show); button.setOnClickListener(new OnClickListener() { public void onClick(View v) { showDialog(); } }); } @Override public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); } void showDialog() { FragmentTransaction ft = getFragmentManager().beginTransaction(); DialogFragment newFragment = MyDialogFragment.newInstance(); newFragment.show(ft, "dialog"); } public static class MyDialogFragment extends DialogFragment { static MyDialogFragment newInstance() { MyDialogFragment f = new MyDialogFragment(); return f; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View v = inflater.inflate(R.layout.fragment_dialog, container, false); return v; } } }
和 布局 : fragment_dialog.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:minWidth="1000dp" android:minHeight="1000dp"> </LinearLayout>
主要的.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffffff"> <Button android:id="@+id/show" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="0" android:text="show"> </Button> </LinearLayout>