在模拟器中运行时按钮消失

问题描述 投票:0回答:1

正如标题所示。在Android Studio中,按钮清晰可见并且可见。我运行模拟器,它消失了。我做了很多搜索,但似乎无法找到特定于案例的解决方案。你能看一看,看看你能不能找到我不能发现的东西。

activity_main.xml中:

<Button
        android:id="@+id/searchBtn"
        android:layout_width="300dp"
        android:layout_height="50dp"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_alignParentEnd="true"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginStart="154dp"
        android:layout_marginTop="581dp"
        android:layout_marginEnd="156dp"
        android:layout_marginBottom="87dp"
        android:background="@drawable/buttons"
        android:elevation="15dp"
        android:text="SEARCH"
        android:visibility="visible" />

main activity.Java:

private Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        button = findViewById(R.id.searchBtn);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                openListActivity();
            }
        });
    }

    public void openListActivity() {
        Intent intent = new Intent(this, ListActivity.class);
        startActivity(intent);
    }

目前按钮的唯一目的是打开第二个活动。

我还错过了其他可能相关的代码吗?

java android android-emulator
1个回答
1
投票

您的边距太大,无法将按钮呈现给模拟器或常规设备。如您所知,边距将在您的窗口小部件和屏幕上的其他窗口小部件之间留出空间。但是这个幅度的间距将迫使你的图像完全消失。随着项目的发展,我会减少边际并定义更实用的布局。这应该可以解决您的问题。

© www.soinside.com 2019 - 2024. All rights reserved.