Giter Site home page Giter Site logo

Comments (4)

laobie avatar laobie commented on July 19, 2024

image

默认的 STYLE_GRID 就是三张显示一行的

from ninegridimageview.

hudan2714 avatar hudan2714 commented on July 19, 2024

我用的是STYLE_Full,要的效果是,1,2,3,4,6,8,9张图时都占满屏幕。。目前是,三张图的时候,会有两行,

from ninegridimageview.

laobie avatar laobie commented on July 19, 2024

3张一行怎么占满屏幕?

from ninegridimageview.

hudan2714 avatar hudan2714 commented on July 19, 2024

看来是我没描述清楚啊,6张图不是两行三张占满屏幕,3张就一行占满屏幕,看了你style_full是第一行2张第二行1张,这样显示的,这个问题,我判断每个条目的图片数量,然后显示不同的style方式解决了。。

还想请教一个问题是,现在显示的图片都好像是正方形的?请问题,能修改图片的宽高不一样吗?比如:一张图片的时候,宽为屏幕宽度,高为宽的3/4,这样能显示吗?我这样修改好像没有效果
@overide
protected ImageView generateImageView(Context context) {
GridImageView imageView = new GridImageView(context);
imageView.setAdjustViewBounds(true);
if (size == 1) {//一张图片
int screenWidth = ScreenUtils.getScreenWidth();
int height = screenWidth * 3 / 4;
imageView.setMaxWidth(screenWidth);
imageView.setMaxHeight(height);
}
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
return imageView;
}
还请指教,麻烦了。。。

在线等,还请指教可以修改的思路,因为最近需要使用。。。谢谢了!

from ninegridimageview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.