android中的第二个按钮是不可见的

时间:2016-07-13 11:40:53

标签: java android

#include <iostream>
#include <random>

using namespace std;

int main(int argc, const char *argv[])
{
    mt19937_64 rng;
    normal_distribution<double> dist;

    cout << dist(rng) << endl;

    return 0;
}

适用于In the activity_main.xml is used - ScrollView - LinearLayout - RelativeLayout TextViewRadioGroupsRadioButtonsEditText。  应用程序正常运行,直到添加Button。此应用运行后,resetButton不可见。 我认为布局之间有一个错误,也许我应该使用另一种布局组合,我不知道。 谢谢你的帮助!

resetButton

1 个答案:

答案 0 :(得分:0)

使用你的代码我得到这个输出。你想要这个或其他东西吗? 我把你的代码放在了这个

 <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

         // your code here..

        </RelativeLayout>

    </ScrollView>

enter image description here

UpDate:

您必须以id这种方式提供..并检查layout_below属性Button

 <Button
                android:id="@+id/submitButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/seventhGroupRadioButtons"
                android:layout_marginBottom="4dp"
                android:layout_marginTop="10dp"
                android:background="@android:color/black"
                android:onClick="OnClick"
                android:text="Submit"
                android:textColor="@android:color/white" />

            <Button
                android:id="@+id/resetButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/submitButton"
                android:layout_marginBottom="3dp"
                android:layout_marginTop="2dp"
                android:onClick="OnClick"
                android:text="Reset"
                android:textAllCaps="true"
                android:textColor="@android:color/black" />