0

在此处输入图像描述

我试图让按钮进入白框下方。在 java 文件中,我向 id:ViewLayout 添加了一个特殊视图。我尝试将按钮放在 Framelayout 之后,但它们没有出现在屏幕上......

<TextView
    android:id="@+id/tvClock"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="12:00"
    android:textColor="@android:color/white"
    android:textSize="100dp" />

<FrameLayout
    android:id="@+id/Container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <RelativeLayout
        android:id="@+id/ViewLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </RelativeLayout>

    <Button
        android:id="@+id/bUnlock"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Unlock" />

    <Button
        android:id="@+id/bPin"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="PIN" />
</FrameLayout>

谢谢!

4

3 回答 3

0

试试这个。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/black"
android:orientation="vertical" >

<TextView
    android:id="@+id/tvClock"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="12:00"
    android:textColor="@android:color/white"
    android:textSize="100dp" />

<LinearLayout
    android:id="@+id/Container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.58" >

    <LinearLayout
        android:id="@+id/ViewLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
    </LinearLayout>
</LinearLayout>

于 2013-11-11T01:10:47.187 回答
0

这可能会帮助您:

<TextView
    android:id="@+id/tvClock"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:gravity="center"
    android:text="12:00"
    android:textColor="@android:color/white"
    android:textSize="100dp"
    android:layout_weight="2" />

<LinearLayout
    android:id="@+id/Container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:layout_weight="1">

    <RelativeLayout
        android:id="@+id/ViewLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1" >
    </RelativeLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/bUnlock"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Unlock" />

        <Button
            android:id="@+id/bPin"
            style="?android:attr/buttonStyleSmall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="PIN" />
    </LinearLayout>
</LinearLayout>
</LinearLayout>
于 2013-11-12T04:08:57.337 回答
0
<TextView
android:id="@+id/tvClock"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="12:00"
android:textColor="@android:color/white"
android:textSize="100dp" />

<RelativeLayout
android:id="@+id/Container"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<RelativeLayout
    android:id="@+id/ViewLayout"
    android:layout_width="match_parent"
    android:layout_height="100dp" >
</RelativeLayout>

<Button
    android:id="@+id/bUnlock"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Unlock" 
    android:layout_below="@id/ViewLayout"
 />

<Button
    android:id="@+id/bPin"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="PIN" 
    android:layout_below="@id/bUnlock"/>
</RelativeLayout>

尝试RelativeLayout代替framelayout.

于 2013-11-11T01:01:36.133 回答