我将如何将 atextview
放在 an 下方imageview
以便text
居中?如果我使用relative layout
,唯一的方法是android:layoutBelow
但你不能对齐到图像的中心,imageview
因为你可以对齐到right
或left
图像的中心。除非我错过了什么
谢谢
我将如何将 atextview
放在 an 下方imageview
以便text
居中?如果我使用relative layout
,唯一的方法是android:layoutBelow
但你不能对齐到图像的中心,imageview
因为你可以对齐到right
或left
图像的中心。除非我错过了什么
谢谢
看到您的评论后,我对您要完成的工作有了更好的了解。这使用了一个额外的视图,但允许您将 textview 分组到 imageview。
左上角的RelativeLayout:
<?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" >
<!-- place this layout anywhere and the imageview and textview will follow. -->
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView1"
android:layout_centerHorizontal="true"
android:gravity="center_horizontal"
android:text="TextViewTextViewTextViewTextViewTextView" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
</RelativeLayout>
屏幕中央的RelativeLayout:
<?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" >
<!-- place this layout anywhere and the imageview and textview will follow. -->
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView1"
android:layout_centerHorizontal="true"
android:gravity="center_horizontal"
android:text="TextViewTextViewTextViewTextViewTextView" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
</RelativeLayout>
右下角的相对布局:
<?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" >
<!-- place this layout anywhere and the imageview and textview will follow. -->
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView1"
android:layout_centerHorizontal="true"
android:gravity="center_horizontal"
android:text="TextViewTextViewTextViewTextViewTextView" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
</RelativeLayout>
正如您所看到的,在您放置内部 RelativeLayout 的任何地方,ImageView 和 TextView 都在后面。
尝试像这样声明您的文本视图:
<TextView
android:layout_width="0dp"
android:layout_align="wrap_content"
android:layout_alignLeft="@+id/id_of_imageview"
android:layout_alignRight="@+id/id_of_imageview"
android:layout_below="@+id/id_of_imageview"
android:gravity="center_horizontal" />
通过使用 android:drawableLeft 属性,您可以在 textview 中设置图像并设置文本。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_launcher"
android:text="Hello"
android:gravity="center_vertical"
android:paddingLeft="5dp"
/>
试试这个
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_launcher"
android:drawableRight="@drawable/ic_launcher"
android:drawableTop="@drawable/ic_launcher"
android:drawableBottom="@drawable/ic_launcher"
android:text="Hello"
android:gravity="center"
android:paddingLeft="10dp"
/>
================================== 或
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_launcher"
android:text="Hello"
android:gravity="center"
android:paddingLeft="10dp"
/>
这将解决您在注释中阅读的问题,在定义其基本长度的文本中Text length
使用android:ems
<TextView
android:layout_width="0dp"
android:layout_align="wrap_content"
android:layout_alignLeft="@+id/id_of_imageview"
android:layout_alignRight="@+id/id_of_imageview"
android:layout_below="@+id/id_of_imageview"
android:gravity="center_horizontal"
android:ems="10" />