0

ダイアログの右上隅に閉じるボタンを配置しようとしています。ただし、必要な属性を指定しました。正しく配置されていません。ほとんどがエミュレーターです。

<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