Android Data(6)-- Android 常用API

目录

1、onItemClick

2、shader


1、onItemClick

public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3)
各项的意义:arg1是当前item的view,通过它可以获得该项中的各个组件。 
              例如arg1.textview.settext("asd"); 
           
          arg2是当前item的ID。这个id根据你在适配器中的写法可以自己定义。 
 
 
          arg3是当前的item在listView中的相对位置! 

2、shader

    /** Create a shader that draws a radial gradient given the center and radius.
        @param centerX     The x-coordinate of the center of the radius
        @param centerY     The y-coordinate of the center of the radius
        @param radius      Must be positive. The radius of the circle for this gradient
        @param centerColor The color at the center of the circle.
        @param edgeColor   The color at the edge of the circle.
        @param tileMode    The Shader tiling mode
    */
    public RadialGradient(float centerX, float centerY, float radius,
            int centerColor, int edgeColor, @NonNull TileMode tileMode) {
        if (radius <= 0) {
            throw new IllegalArgumentException("radius must be > 0");
        }
        mType = TYPE_COLOR_CENTER_AND_COLOR_EDGE;
        mX = centerX;
        mY = centerY;
        mRadius = radius;
        mCenterColor = centerColor;
        mEdgeColor = edgeColor;
        mTileMode = tileMode;
        init(nativeCreate2(centerX, centerY, radius, centerColor, edgeColor, tileMode.nativeInt));
    }

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值