English 中文(简体)
可从图像视图中提取
原标题:get drawable from ImageView

我目前正在构建一个应用程序, 该应用程序在主视图上有 6 张图像, 它从我的 < code > drawable 文件夹生成随机图像( 模拟牌牌牌甲板)

<强 > 初始化甲板:

public static void initDecks() {
    int m = 0;
    for (int i = 0; i < suites.length; i += 1) {
        for (int j = 0; j < regularCards.length; j += 1) {
            regularDeck[m++] = "drawablw/" + suites[i] + regularCards[j]
                    + ".jpg";
        }
    }
    m = 0;
    for (int i = 0; i < suites.length; i += 1) {
        for (int j = 0; j < trickCards.length; j += 1) {
            trickDeck[m++] = "drawable/" + suites[i] + trickCards[j]
                    + ".jpg";
        }
    }

    Collections.shuffle(Arrays.asList(regularDeck));
    Collections.shuffle(Arrays.asList(trickDeck));
}

< 强力 > 粉碎甲板:

public static String[] getCards(int size) {
    String[] result = new String[size];
    for (int i = 0; i < size - 2; i += 1) {
        result[i] = regularDeck[i];
    }
    result[size - 1] = trickDeck[0];
    Collections.shuffle(Arrays.asList(result));
    return result;
}

在我的主要活动中, 我将卡片指派到视图中, 当用户点击这些卡片时, 我想知道图像是骗术卡片还是普通卡片 。

是否有方法可以找到被点击的游戏卡片是否被选中? 比如 if( image. gigImagageDrawable (). 等同( R. degrabable. trick.jpg) ?

最佳回答

在您设置到图像View 时存储绘图的名称/ ID。 所以在您的分类/ 活动中, 您总是有一个成员变量, 以保持当前图像标识符 。

问题回答

请查看此链接 。

< a href=" "https://stackoverflow.com/ questions/4526585/imageview-drawable-id- in-and-roid" > 在图像View 中找到一个可提取的代号

基本上,您可以在图像视图标签中设置 ID, 当您在图像视图中设置图像时, 并且从您需要的地方获取... 。

public static Integer getDrawableId(ImageView obj)
    throws SecurityException, NoSuchFieldException,
    IllegalArgumentException, IllegalAccessException, ClassNotFoundException {
        Field f = ImageView.class.getDeclaredField("mResource");
        f.setAccessible(true);
        Object out = f.get(obj);
        return (Integer)out;
}

我发现 可操作 资源 id 储存在 mresource 字段 ImaageView 对象。

请注意, Drawable in ImageView 中的 可能并不总是来自资源id。 它可能来自 Drawable 对象或图像Uri。 在这种情况下, resource 将重置为 0。 因此, 不必多依赖这个 。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...