我试图将关闭按钮放在对话框的最右上角。但是我已经给出了所需的属性。它没有正确对齐。在 xml 中查看时它是完全正确的。但它没有与右边对齐大多数在模拟器中。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<!-- Header Inclusion -->
<include
android:id="@+id/pheader"
layout="@layout/playheader"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_marginRight="1dp" >
</include>
<!-- Header Inclusion -->
<!-- Dialog Layout For Reading -->
<ScrollView
android:id="@+id/readscroller"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
android:layout_marginTop="55dp" >
<LinearLayout
android:id="@+id/textviewlayout"
android:layout_width="match_parent"
android:layout_height="320dp"
android:layout_centerVertical="true"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="40dp"
android:orientation="vertical"
android:background="#000000">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.08"
android:orientation="vertical"
android:background="#6D6968">
<TextView
android:id="@+id/heading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_weight="0.08"
android:text="Provide Overall Effectivness of the speech"
android:textStyle="bold"
android:textColor="#FFFFFF"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.70"
android:orientation="vertical"
android:background="@drawable/roundedlayout"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
>
<TextView
android:id="@+id/readtext"
android:layout_width="match_parent"
android:layout_height="134dp"
android:layout_marginBottom="50dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_weight="0.70"
android:text="Comments"
android:textColor="#000000" />
</LinearLayout>
</LinearLayout>
</ScrollView>
<!-- Dialog Layout For Reading -->