xml 在GridView中水平(可能垂直)居中项目
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 在GridView中水平(可能垂直)居中项目相关的知识,希望对你有一定的参考价值。
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_weight="0.8">
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridAnswer"
android:layout_width="fill_parent"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_height="fill_parent"
android:numColumns="auto_fit"
android:columnWidth="70dp"
android:horizontalSpacing="10dp"
android:verticalSpacing="20dp"
android:gravity="center"
android:stretchMode="spacingWidthUniform" >
</GridView>
</RelativeLayout>
<!--ITEM.XML -->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="A"
android:id="@+id/btLetter"
android:textSize="24dp"
android:gravity="center"
android:padding="5dp"
android:textIsSelectable="false"
android:textColor="@android:color/black"
android:background="@drawable/frame_letter_answer"/>
</LinearLayout>
以上是关于xml 在GridView中水平(可能垂直)居中项目的主要内容,如果未能解决你的问题,请参考以下文章
img标签在div中水平垂直居中--两种实现方式
在swiper-slide中水平垂直居中元素flex实现
CSS技巧-01 如何实现一个元素在页面中水平垂直居中
css在一个div中水平+垂直对齐3个元素
模态框中水平垂直居的问题
xml 在TextView中水平和垂直居中文本