Okey,所以我试图用一行文字制作一个图像网格(材料设计指南)。单线指南:
单行页眉/页脚
身高:48dp
文字填充:16dp
默认字体大小:16sp
我这样做的方式使文本被截断,给出16的文本和组合填充为32时哪种有意义:
我使用了android:padding = 16dp,但我可能误解了指南。有人可以帮忙澄清一下。提前谢谢。
编辑:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.project.SquareImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_gravity="bottom"
android:background="#40000000"
android:padding="16dp"
android:textColor="@android:color/white"
android:textSize="16sp" />
</FrameLayout>
答案 0 :(得分:0)
文本被裁剪,因为没有足够的空间,因为填充使实际视图变小。
我最终只设置了左上角和左上边距,这意味着没有底部填充。这解决了我的问题。
android:paddingLeft="16dp"
android:paddingTop="16dp"