- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试在以下代码的线性布局中的 gridview 下方添加按钮。但是当我执行我的应用程序时,我只看到 gridview 没有按钮项。所以它可能是基本错误,但我看不到。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:background="#2a2a2a"
>
<GridView
android:id="@+id/grid_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:columnWidth="150dp"
android:numColumns="auto_fit"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"
android:stretchMode="columnWidth"
android:gravity="center"></GridView>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/cam_string" />
</LinearLayout>
最佳答案
将 LinearLayout
的方向更改为 vertical
。我怀疑您没有看到 Button,因为 GridView 占据了所有水平空间,然后 LinearLayout 将 Button 添加到屏幕外不可见的位置。您可能还想将 GridView 的 layout_height
更改为“0dip”,并为其指定 `android:layout_weight=1' 属性,以便它填充除 Button 占用的空间之外的所有空间。
关于android - 在 LinearLayout 中使用 Gridview 和 Button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17219742/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!