这是我的XML:
<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:tools="http://schemas.androID.com/tools" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:paddingBottom="@dimen/activity_vertical_margin" androID:paddingleft="@dimen/activity_horizontal_margin" androID:paddingRight="@dimen/activity_horizontal_margin" androID:paddingtop="@dimen/activity_vertical_margin" androID:background="#ffffff" tools:context=".ShowCard" > <TextVIEw androID:ID="@+ID/textVIEw" androID:layout_alignParentBottom="true" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_centerHorizontal="true" androID:background="#33000000" androID:textcolor="#000000" androID:text="@string/lorem_ipsum" />
结果不是我所期望的. TextVIEw的宽度不是全屏,但是左右两边留有一小块空闲空间(如填充/边框,但我没有设置填充/边框!).
你知道为什么吗?建议?
解决方法 试试这个<?xml version="1.0" enCoding="utf-8"?> <relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" > <TextVIEw androID:ID="@+ID/textVIEw" androID:layout_alignParentBottom="true" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_centerHorizontal="true" androID:background="#33000000" androID:textcolor="#000000" androID:text="@string/lorem_ipsum" /> </relativeLayout>总结
以上是内存溢出为你收集整理的android – TextView不适合屏幕全部内容,希望文章能够帮你解决android – TextView不适合屏幕所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)