0

我试图将关闭按钮放在对话框的最右上角。但是我已经给出了所需的属性。它没有正确对齐。在 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 -->

在此处输入图像描述

4

1 回答 1

1

从此更改您的相对布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
>

对此:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" 
>

我根据您的需要创建一个播放头文件,如下所示:
playheader.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"

     >
    <Button
        android:layout_width="50dip"
        android:layout_height="50dip"
        android:background="@drawable/ic_launcher"
        android:layout_alignParentRight="true"
        />

</RelativeLayout>

现在我的看法是这样的:

在此处输入图像描述

尝试这个。希望它会有所帮助。

于 2013-07-25T07:15:38.820 回答