3

定義していないのに、レイアウトの DecorView の子が FrameLayout である理由を誰かに説明してもらえますか?

これがxmlレイアウトです

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_general" >

<ImageView
    android:id="@+id/ivIKUGo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:src="@drawable/mainbutton_selector" />

<ImageView
    android:id="@+id/imageViewmoto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_marginBottom="150dp"
    android:src="@drawable/motto_buttonpage_hdpi" />

</RelativeLayout>

ありがとう

4

1 に答える 1

3

通常のテーマを使用する場合は、とのLinearLayout間にコンテンツを保持することができます。あるタイプのテーマを使用する場合、その余分なものは必要ないため、コンテンツはの子として残されて削除されます。DecorViewFrameLayoutActivityNoTitleBarLinearLayoutFrameLayoutDecorView

于 2012-07-26T10:10:46.990 に答える