android – TextView不适合屏幕

android – TextView不适合屏幕,第1张

概述我有一个TextView活动.我想将它对齐在屏幕的底部,在中心,我希望TextView适合屏幕的宽度. 这是我的XML: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:l 我有一个TextVIEw活动.我想将它对齐在屏幕的底部,在中心,我希望TextVIEw适合屏幕的宽度.

这是我的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不适合屏幕所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1122119.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存