框架布局中的嵌套线性布局无效

时间:2014-03-23 01:38:03

标签: android android-layout layout

这是我的代码!!在这里我添加了背景图像,我需要按钮,标签和文本字段才能显示在背景图像上方。我使用了框架布局,但是没有得到预期的结果!只有背景图像填满了屏幕,但按钮和其他stuf没有显示!!我刚接触到android..Plz帮助!!!

   <FrameLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

   <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingRight="40dp" >

        <TextView
            android:id="@+id/tvname1"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="left"
            android:text="your  name"
            android:textSize="20dp"
            android:textStyle="italic" />

        <EditText
            android:id="@+id/etboyname"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="boyname" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/tvname2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="your crushs name"
            android:textSize="20dp"
            android:textStyle="italic" >
        </TextView>

        <EditText
            android:id="@+id/etgirlname"
            android:layout_width="130dp"
            android:layout_height="wrap_content"
            android:hint="girlname" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btclick"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_margin="15dp"
            android:layout_marginLeft="15dp"
            android:layout_weight="1"
            android:background="@drawable/custom" />

        <Button
            android:id="@+id/btsamegender"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="15dp"
            android:layout_weight="1"
            android:background="@drawable/gender2" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/tvsame1"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="left"
            android:layout_marginLeft="15dp"
            android:text="opposite gender"
            android:textSize="20dp"
            android:textStyle="italic" />

        <TextView
            android:id="@+id/tvsame1"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="left"
            android:layout_marginLeft="15dp"
            android:text="same gender"
            android:textSize="20dp"
            android:textStyle="italic" />
    </LinearLayout>

      </LinearLayout>

    <ImageView
      android:id="@+id/imageanim"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
       />
     </FrameLayout>

1 个答案:

答案 0 :(得分:4)

您的imageview会占用整个屏幕,因为它设置为“fill_parent”。它或多或少地放在所有其他布局之上, ,因为您将其添加为最后一个视图 ,这就是您在运行应用时看不到它们的原因。

尝试将您的imageview移到顶级线性布局上方,看看是否无法解决您的问题。

但总的来说 - 要添加背景,请按照此问题的答案中的建议: how to add background image to activity?

编辑:

这就是我的建议 - 您的XML文件应该像这样开始。

<FrameLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    <ImageView
     android:id="@+id/imageanim"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingRight="40dp" >