关于Android布局的问题

发布于 2022-09-07 04:06:04 字数 1206 浏览 22 评论 0

如题,不知道为啥 id 为 item_layout1 的 LinearLayout 的 match_parent 在手机上失效了,可是在 Android Studio 的预览上却没问题呀 ? 求大家帮帮忙 ? !!!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="115dp"
    android:paddingTop="8dp"
    android:paddingLeft="8dp"
    android:paddingRight="8dp"
    android:orientation="horizontal">

    <LinearLayout
        android:id="@+id/item_layout1"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="110dp"
        android:paddingRight="8dp"
        android:background="@drawable/touch_bg">
        ... ...
    </LinearLayout>

    <FrameLayout
        android:layout_width="100dp"
        android:layout_height="110dp"
        android:layout_marginRight="4dp"
        android:layout_marginBottom="4dp"
        android:background="#f33213">
        ... ...
    </FrameLayout>

</LinearLayout>

图片描述

图片描述

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

別甾虛僞 2022-09-14 04:06:04

知道了:

    @NonNull @Override
    public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View view = null;
        // inflate 的第2个参数要传入 parent
        view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_1, parent, false);
        return new MyViewHolder2(view);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文