在GridLayout中看不到按钮

时间:2018-08-28 00:34:11

标签: java android android-studio grid-layout

在Android Studio中。正在关注有关GridLayout的YouTube教程。尝试使用将layout_width和height设置为wrap_content的GridLayout并向其添加一个按钮。但是我看不到该按钮或我通常添加的其他任何内容。

有什么解决方法吗?

图片:

我正在尝试观看this视频

他看不到所有的按钮和文字,

XML文本代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:context=".MainActivity">

<android.support.v7.widget.GridLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    tools:layout_editor_absoluteX="8dp"
    tools:layout_editor_absoluteY="8dp">

    <Button
        android:id="@+id/button6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        tools:layout_editor_absoluteX="0dp"
        tools:layout_editor_absoluteY="0dp" />
</android.support.v7.widget.GridLayout>

</android.support.constraint.ConstraintLayout>

Java代码(不需要):

package com.example.naveh.layla;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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

3 个答案:

答案 0 :(得分:0)

我试图在我的机器上运行代码,一切正常。按钮可见。请尝试更改预览部分的主题,并在真实设备上运行。

答案 1 :(得分:0)

从Github链接:https://github.com/buckyroberts/Source-Code-from-Tutorials/tree/master/Android_Beginners/017%20GridLayout

使用GridLayout代替android.support.v7.widget.GridLayout

答案 2 :(得分:0)

尝试使用GridLayout而不是androidx.gridlayout.widget.GridLayout。

这对我有帮助。