Android常见控件— — —TextView

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android常见控件— — —TextView相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="utf-8"?>
<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:paddingLeft="@dimen/activity_horizontal_margin"
>

<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="第一个textview"
android:textSize="24sp"
android:textColor="#ff0000"
android:gravity="center"
/>

</RelativeLayout>

技术分享

以上是关于Android常见控件— — —TextView的主要内容,如果未能解决你的问题,请参考以下文章

Android常见界面控件(基础入门)

Android常见控件— — —Button

Android常见控件— — —EditText

Android常见控件— — —TextView

Android常见控件— — —AlertDialog

android ui控件都有哪些