gpt4 book ai didi

android - 在 RecyclerView 中居中 CardView?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:49:26 25 4
gpt4 key购买 nike

我一直在 RecyclerView 中使用 CardView,但似乎无法让我的卡片居中。

我的cardview.xml:

<android.support.v7.widget.CardView
android:id="@+id/cardview"
android:layout_gravity="center_horizontal"
android:gravity="center"
android:layout_width="300dp"
android:layout_height="100dp"
xmlns:android="http://schemas.android.com/apk/res/android">

<TextView
android:id="@+id/text"
android:textAlignment="center"
android:layout_gravity="center"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

</android.support.v7.widget.CardView>

我的activity_main.xml:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:gravity="center"
android:fitsSystemWindows="true"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimaryDark"/>

<!-- A RecyclerView with some commonly used attributes -->
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"/>


</LinearLayout>

我的应用在运行时的样子:

最佳答案

好的,我有同样的问题,我想我已经“解决”了。这真的只是另一个黑客。 Google 的 android 团队真的应该修复这个回收器 View 并添加对滑动关闭的支持。

在onCreateView中:

recyclerView.addItemDecoration(new ItemDecoration() {

@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, State state) {
int totalWidth = parent.getWidth();
int maxCardWidth = getResources().getDimensionPixelOffset(R.dimen.card_max_width);
int sidePadding = (totalWidth - maxCardWidth) / 2;
sidePadding = Math.max(0, sidePadding);
outRect.set(sidePadding, 0, sidePadding, padding);
}
});

关于android - 在 RecyclerView 中居中 CardView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27369536/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com