gpt4 book ai didi

android - 在 TableLayout 中右对齐

转载 作者:行者123 更新时间:2023-11-29 22:00:00 25 4
gpt4 key购买 nike

我仍然没有找到如何在 XML 中做到这一点的解决方案我希望我的 textview 向左对齐,而我的 imageview 向右对齐,代码如下:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TableRow
android:id="@+id/tr1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<TextView
android:layout_height="wrap_content"
android:text="Vibration"
android:layout_width="wrap_content" />


<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:src="@drawable/ic_launcher" />


</TableRow>
</TableLayout>

有什么办法吗?

最佳答案

尝试将您的 TableRow 更改为以下内容:

<TableRow
android:id="@+id/tr1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="Vibration"
android:gravity="left" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:gravity="right"
android:src="@drawable/ic_launcher" />
</TableRow>

关于android - 在 TableLayout 中右对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12185670/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com