所以我有2个文本视图,一个在另一个之上,但是当填充第二个文本视图时,剪切在底部被截断.标题为header_subtitle的textview存在问题

很明显我错过了一些明显的东西,但不知道是什么.

[问题]1

这是代码:

android:layout_width="match_parent"

android:layout_height="match_parent">

layout="@layout/search_bar_layout"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_gravity="center"

android:visibility="gone" />

android:id="@+id/container_results"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:animateLayoutChanges="true"

android:visibility="gone">

android:id="@+id/container_header"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:minHeight="@dimen/product_results_header_height"

android:orientation="vertical"

android:padding="?marginNormal">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:gravity="center_vertical"

android:orientation="horizontal">

android:layout_width="wrap_content"

android:layout_height="fill_parent"

android:layout_weight="1"

android:orientation="vertical" >

android:id="@+id/header_title"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:ellipsize="end"

android:maxLines="2"

android:textAppearance="?taTitleXL" />

android:id="@+id/header_subtitle"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:ellipsize="end"

android:maxLines="1"

android:layout_gravity="fill"

android:textAppearance="?taTitleXL"

android:padding="1sp"

android:visibility="gone"/>

android:id="@+id/sort_spinner"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginLeft="?marginNormal" />

android:id="@+id/refine_btn"

style="?buttonTertiary"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginLeft="?marginNormal"

android:text="@string/product_results_refine" />

android:id="@+id/category_links"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_marginTop="?marginSmall"

android:horizontalSpacing="?marginTiny"

android:maxLines="2" />

android:id="@+id/divider_horizontal"

layout="@layout/divider_horizontal"

android:layout_width="match_parent"

android:layout_height="@dimen/divider_size"

android:layout_below="@+id/container_header" />

android:id="@+id/browse_no_results"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_below="@+id/divider_horizontal"

android:layout_margin="?marginNormal"

android:text="@string/product_results_no_results"

android:textAppearance="?taTitleM"

android:visibility="gone" />

android:id="@+id/product_grid"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_below="@+id/divider_horizontal"

android:numColumns="@integer/product_grid_cols"

android:overScrollMode="@null"

android:stretchMode="columnWidth" />

android:id="@+id/progress_footer"

layout="@layout/loading"

android:layout_width="@dimen/progress_view_height"

android:layout_height="@dimen/progress_view_height"

android:layout_alignParentBottom="true"

android:layout_centerHorizontal="true"/>

android:id="@+id/noFilteredResults"

android:layout_below="@id/divider_horizontal"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:visibility="gone" />

android:id="@+id/coach_mark"

layout="@layout/view_coach_mark"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentEnd="true"

android:layout_marginEnd="@dimen/coach_mark_margin_end"

android:layout_marginTop="@dimen/coach_mark_margin_top" />

android textview截断,Android Textview文字在底部被截断相关推荐

  1. android文字与图片底部对齐,ImageView 图片和 TextView 文字的底部对齐

    有时我们需要做到大文字小图片在一行显示,并且图片跟文字的底部对齐,如图: 以 RelativeLayout 为例: 1. 当 ImageView 设置了 alignBottom 属性,对齐的方式是这样 ...

  2. android字高度充满textview,TextView文字实际高度分析

    问题 做Android开发的人都知道怎么设置文字高度: 1 2 3 4 5 6 android:layout_width="wrap_content" android:layout ...

  3. android文字广告的循环滚动,android怎样写一个循环文字滚动的TextView

    效果图: 在layout中这样来声明: android:layout_width="wrap_content" android:layout_height="wrap_c ...

  4. Android TextView中设定个别文字字体显示格式

    Android TextView中设定个别文字字体显示格式 文章分类:移动开发 用Html来格式化字符,例如要实现如下的显示: "这只是一个测试字符串,测试黑体字.斜体字.下划线.红色字的显示." 可 ...

  5. Android移动开发之【Android实战项目】textview实现文字逐字显示效果

    可以采用自定义TextView的方式去实现,也可才用定时更新文字显示,思路是让TextView每隔一秒显示以一个字符串(并非每一秒多出来一个汉字),那么就简单了,可以开启一个线程,实现代码如下: 文章 ...

  6. Android 如何实现带滚动条的TextView,在更新文字时自动滚动到最后一行

    1.主布局代码: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns ...

  7. android textview表情,Android开发(16)-TextView显示表情图像和文字

    从这个案例中我们可以学到当我们美化图片美化界面的时候可以在某一区域输入图片和文字混搭信息,第三张图片按比例缩小,第四张图像有超链接 布局文件 MainActivity.java package com ...

  8. Android TextView 带背景的文字垂直方向显示(ems属性)

    工具:Android Studio 在项目中有个这个需求:要求文字带背景,且文字是垂直方向显示的,竖着排,如图1. 图1  但是当我满怀欣喜地写入了这段代码之后: <TextView andro ...

  9. Android利用SpannableStringBuilder设置TextView中部分文字的颜色...

    原文:android - SpannableString或SpannableStringBuilder以及string.xml文件中的整型和string型代替 背景介绍 在开发应用过程中经常会遇到显示 ...

最新文章

  1. Java服务器热部署的实现原理
  2. c语言地图导航代码大全,C语言实训—电子地图导航系统源代码.docx
  3. 神舟笔记本风扇控制软件_十代酷睿+RTX2070加持 高性能游戏本首选神舟战神G9CU7PK...
  4. 信息学奥赛一本通 1131:基因相关性 | OpenJudge NOI 1.7 03
  5. 电脑控制Android设备的软件——Total Control
  6. 2019-08-21
  7. springboot项目打成可依赖jar包_用IDEA把SpringBoot项目打成jar发布项目
  8. Spring.NET实用技巧1——基于Prevalence下的NHibernate二级缓存使用技巧
  9. es6笔记 day1---let和const的应用
  10. Atitit.软件开发的几大规则,法则,与原则p821.doc
  11. 全志r16android sdk,全志 Allwinner R16 SoC 全套设计资料分享 原理图 PCB 数据手册 SDK...
  12. 【YOLO3D】:端到端3D点云输入的实时检测
  13. HTML将广告关闭的JS代码,原生js对联广告代码制作浮动固定层可关闭对联广告横幅...
  14. 2022年北京航空航天大学计算机考研复试分数线
  15. android USB OTG功能如何打开及实现
  16. 磁盘被写保护怎样去掉
  17. [TTF字体]提取TTF字体的轮廓(二)
  18. C语言单链表讲解(上):有表头链表的使用
  19. Opencv中3D显示模块viz安装
  20. PhpSpreadsheet中文文档 | 基础Spreadsheet开发使用示例

热门文章

  1. Android View 获取焦点
  2. minui点击分页控件后滚动条置顶
  3. 催眠曲用计算机怎么弹,在电脑中巧播“催眠曲”
  4. 企业微信群发消息提醒
  5. Arduino入门小知识点总结(2)(红外感应开关 与 继电器接法 模拟输入输出tone函数)
  6. lofter 爬虫_Python网络爬虫1 - 爬取网易LOFTER图片
  7. 123457123457#0#-----com.cym.shuXueWangGuo1--前拼后广--儿童数学
  8. 荣耀手机不出鸿蒙系统,惊喜!4部荣耀手机可升级至华为鸿蒙系统,网友表示:终于等到了...
  9. js layui跳转页面_Layui数据表格跳转到指定页的实现方法
  10. 实用分享|多台4G工业路由器与华为USG6300搭建IPsec