android - how to decrease the space between the images in the image below? Is there any way to make the spae zero ? so that the images are side by side? -
मुझे लगता है कि आपने यह ग्रिड दृश्य के साथ किया था। अपने XML की जांच करें जैसे
android: columnWidth = "90dp" एंड्रॉइड: numColumns = "auto_fit" एंड्रॉइड: verticalSpacing = "10dp" एंड्रॉइड: क्षैतिज स्थान = "10 डीपी" इन गुणों को बदलने का प्रयास करें और यदि आपके कोड में इस प्रकार का कोड होता है तो इसे बदलें
imageView.setLayoutParams (नया GridView.LayoutParams (85, 85)); ImageView.setPadding (8, 8, 8, 8);
Comments
Post a Comment