0

我正在开发一个应用程序,我在其中使用网格布局来排列 TextView。TextViews 是动态添加的。

现在我想要的是当用户点击任何点击监听器时,应该弹出一个 toast,给出 textview 的行号和列号的位置。(我也在使用列跨越)。

到目前为止,我已经在 textView 上实现了单击侦听器,但我无法弄清楚如何让它的位置显示在 toast 中。

Grid Layout 添加在 Horizo​​ntal ScrollView 中,然后又添加到 Scroll View 中,我需要此设置才能双向滚动。

我的布局 XML :-

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/vertical_scroll_view3">

    <HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/horizontal_scroll_view3">

        <GridLayout
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:id="@+id/gridLayout"
            android:orientation="vertical"

            />
    </HorizontalScrollView>
</ScrollView>

我正在关注以下问题以动态添加视图

如何使 GridLayout 适合屏幕大小

我的网格布局是:- 在此处输入图像描述

及其网格布局不是网格视图!

任何建议表示赞赏!

4

0 回答 0