我在彈出的問題,我的彈出對話框顯示非結構化的,我想是這樣,我在這裏附上了我的Android XML too.why我的流行音樂太small.Here是我的代碼我在填充父應用線性佈局這是一個問題?彈出對話框問題的Android
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Video Download Quality"
android:textColor="@color/colorPrimaryBlack"
android:textSize="20dp" />
<RadioGroup
android:id="@+id/radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp">
<RadioButton
android:id="@+id/radiofrst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="360dp" />
<RadioButton
android:id="@+id/radiosecond"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="480dp" />
<RadioButton
android:id="@+id/radiothird"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="720dp" />
<RadioButton
android:id="@+id/radioforuth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1080dp" />
</RadioGroup>
</LinearLayout>
您可以通過向佈局的元素添加邊距或填充以使UI像您想要的那樣進行一些調整。 – sasuke
請通過這個[網站](http://guides.codepath.com/android/Using-DialogFragment) – Basi