我正在尝试将TextView对齐在相对布局中,但也在ImageView的右侧。我希望它看起来像这样。
[-(image)-----some text here------------]
我可以使用下面的代码执行此操作,但如果文字太长则会与图像重叠。
<?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="wrap_content"
android:orientation="horizontal"
android:paddingTop="@dimen/small_padding"
android:paddingBottom="@dimen/small_padding"
android:background="@color/White">
<ImageView
android:id="@+id/navMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/home_icon"
android:layout_marginEnd="@dimen/small_padding"
android:contentDescription="@string/abc_search_hint"
android:layout_alignParentStart="true" />
<TextView
android:id="@+id/actionBarTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/profile"
android:textSize="24sp"
android:textStyle="bold"
android:textColor="@color/Black"
android:maxLines="1"
android:ellipsize="end"
android:contentDescription="@string/title_activity_connect"
android:layout_centerInParent="true" />
</RelativeLayout>
我尝试将TextView对齐到ImageView的右侧,但如果我这样做,它会停止在父级中心。任何帮助表示赞赏
答案 0 :(得分:1)
你可以尝试这样的事情。为此,我使用了一个无线电组而不是线性布局,但它仍然可以工作。像你已经做的那样使线性布局水平,然后使布局重心,然后将图像放在文本视图之前
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="center"
android:paddingTop="20dp">
<RadioButton
android:id="@+id/radio_student"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/checkbox_student"
android:onClick="onRadioButtonClicked"
android:layout_marginEnd="30dp"
android:layout_marginRight="30dp"/>
<RadioButton
android:id="@+id/radio_teacher"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/checkbox_teacher"
android:onClick="onRadioButtonClicked"
android:layout_marginStart="30dp"
android:layout_marginLeft="30dp"/>
</RadioGroup>
编辑: 我不知道按钮的边距属性是否适用于文本视图但文本视图中的填充可能有效
答案 1 :(得分:0)
试试这个:
<?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="wrap_content"
android:orientation="horizontal"
android:paddingTop="@dimen/small_padding"
android:paddingBottom="@dimen/small_padding"
android:background="@color/White">
<ImageView
android:id="@+id/navMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/home_icon"
android:layout_marginEnd="@dimen/small_padding"
android:contentDescription="@string/abc_search_hint"
android:layout_alignParentStart="`enter code here`true" />
<TextView
android:id="@+id/actionBarTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/profile"
android:textSize="24sp"
android:textStyle="bold"
android:textColor="@color/Black"
android:maxLines="1"
android:ellipsize="end"
android:contentDescription="@string/title_activity_connect"
android:layout_toRightOf="@+id/navMenu"
android:alignParentRight="true"
android:gravity="center" />
</RelativeLayout>
答案 2 :(得分:0)
你可以(并且为了性能),使用复合drawable 作为TextView(并摆脱ImageView)
您希望图像保留在TextView的左侧部分,因此请使用android:drawableLeft
:
<?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="wrap_content"
android:paddingTop="@dimen/small_padding"
android:paddingBottom="@dimen/small_padding"
android:background="@color/White"
>
<TextView
android:id="@+id/actionBarTitle"
android:drawableLeft="@drawable/home_icon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/profile"
android:textSize="24sp"
android:textStyle="bold"
android:textColor="@color/Black"
android:maxLines="1"
android:ellipsize="end"
android:contentDescription="@string/title_activity_connect"
android:centerInParent="true"
android:gravity="center"
/>
</RelativeLayout>