在android中底部设置textview

在android中底部设置textview,第1张

概述我在Linearlayout里面有Textview.我希望它显示在底部,但它只显示在我的中心.我的xml文件看起来像下面的代码.我尝试用RelativeLayout替换LinearLayout但它没有用. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="v 我在linearlayout里面有TextvIEw.我希望它显示在底部,但它只显示在我的中心.我的xml文件看起来像下面的代码.我尝试用relativeLayout替换linearLayout但它没有用.

<linearLayout  xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"androID:layout_wIDth="fill_parent"androID:layout_height="fill_parent"androID:background="@androID:color/black"><relativeLayoutandroID:ID="@+ID/relativeLayout1"androID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:background="#000"androID:layout_gravity="bottom" > </relativeLayout><TextVIEw    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    androID:ID="@+ID/TextVIEwBottomTitle"    androID:text="@string/app_logo_bottom"    androID:textcolor="@color/logo_color"    androID:gravity="center"    androID:textSize="@dimen/logo_size"></TextVIEw><TextVIEw    androID:ID="@+ID/TextVIEwBottomVersion"    androID:text="@string/app_version_info"    androID:textSize="@dimen/version_size"    androID:textcolor="@color/version_color"    androID:background="@color/version_bkGrd"    androID:layout_height="fill_parent"    androID:linespacingExtra="@dimen/version_spacing"    androID:layout_wIDth="fill_parent"    androID:layout_gravity="center_vertical|center_horizontal"    androID:gravity="center"></TextVIEw></linearLayout>

有谁有想法?

解决方法 这可以帮助你:

<linearLayout  xmlns:androID="http://schemas.androID.com/apk/res/androID"   androID:orIEntation="vertical"   androID:layout_wIDth="fill_parent"   androID:layout_height="fill_parent"   androID:background="@androID:color/black"><relativeLayoutandroID:ID="@+ID/relativeLayout1"androID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:background="#000"androID:layout_gravity="bottom" ><TextVIEw    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    androID:ID="@+ID/TextVIEwBottomTitle"    androID:text="@string/app_logo_bottom"    androID:textcolor="@color/logo_color"    androID:gravity="bottom"    androID:layout_alignParentBottom="true"    androID:textSize="@dimen/logo_size"></TextVIEw><TextVIEw    androID:ID="@+ID/TextVIEwBottomVersion"    androID:text="@string/app_version_info"    androID:textSize="@dimen/version_size"    androID:textcolor="@color/version_color"    androID:background="@color/version_bkGrd"    androID:layout_height="fill_parent"    androID:linespacingExtra="@dimen/version_spacing"    androID:layout_wIDth="fill_parent"    androID:layout_gravity="bottom"    androID:layout_alignParentBottom="true"    androID:gravity="bottom"></TextVIEw> </relativeLayout></linearLayout>
总结

以上是内存溢出为你收集整理的在android中底部设置textview全部内容,希望文章能够帮你解决在android中底部设置textview所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存