gpt4 book ai didi

android - Android 中的 TableLayout 使用 Imageview

转载 作者:行者123 更新时间:2023-11-29 20:10:08 24 4
gpt4 key购买 nike

如何在 table row 中添加 Image View (仅使用 XML)tag 我找不到的地方图片可见 ?

我下面的 XML 代码是:

<TableLayout android:layout_height="wrap_content" android:layout_width="match_parent">
<TableRow android:layout_height="wrap_content" android:layout_width="wrap_content">
<ImageView android:src="@drawable/golis" android:layout_height="wrap_content" android:layout_width="wrap_content"/>
</TableRow>
</TableLayout>

我需要帮助。

最佳答案

您可以在表行中添加 ImageView(使用 XML),如下所示

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal">

<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TableRow
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textColor="#FFF">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/YOUR_IMAGE" /> //change imagesize as per devices
</TableRow>
</TableLayout>

</LinearLayout>

关于android - Android 中的 TableLayout 使用 Imageview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35126773/

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