を尊重しないだろう、私はこのようになりますカスタムDialogFragmentクラスを持っている:DialogFragmentはwrap_content
/**
* Dialog Fragment containing rating form.
*/
public class RatingDialogFragment extends DialogFragment {
public static final String TAG = "RatingDialog";
// ...
@Nullable
@Override
public View onCreateView(LayoutInflater inflater,
@Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.dialog_rating, container, false);
ButterKnife.bind(this, v);
return v;
}
// ...
}
ルートビューはすべて、単一の子ビューがandroid:layout_height="wrap_content"
を持ってLinearLayout
<?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="wrap_content"
android:orientation="vertical"
android:padding="16dp">
です。
ただし、このように見えます。私は何が間違っていますか?
すべてのコンポーネントは、最小の高さを持っています。それは私に正しいように見える。あなたの質問を明確にすることができますか? – SoroushA
DialogFragmentがコンテンツをラップするようにしたいので、 "Submit"ボタンで終了します。 –
@hatboysamあなたは問題を解決するためにdialogFragmentの全体のxmlを投稿してください。私のコードの1つは、 'wrap_content'のために適切に動作する( 'respect')DialogFragmentです。 –