我在两个按钮之间有一个画廊,如下面的 xml 文件所示。在图库中,图像从中心添加。
<RelativeLayout
android:layout_height="80dp"
android:layout_width="fill_parent"
android:id="@+id/gal"
android:layout_alignParentBottom="true"
android:background="@drawable/backgroundblackwhite">
<Button android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/backward"
android:layout_alignParentLeft="true"/>
<Button android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/forward"
android:layout_alignParentRight="true"/>
<Gallery
android:layout_height="100dp"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:id="@+id/gallary"
android:layout_marginLeft="100dp"
android:layout_marginRight="100dp"
android:spacing="5dp"
android:layout_marginBottom="10dp"
android:background="@drawable/greypattren"/>
</RelativeLayout>
I want the images to start from Left of my Gallery. I used the below code to set the gallery images to start from the left of gallery view.
DisplayMetrics 指标 = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metrics);
Gallery g = (Gallery) findViewById(R.id.gallery);
// set gallery to left side
MarginLayoutParams mlp = (MarginLayoutParams) g.getLayoutParams();
mlp.setMargins(-(metrics.widthPixels / 2 + (imageWidth/2)), mlp.topMargin,
mlp.rightMargin, mlp.bottomMargin);
但是,我的画廊将走向最左边,即把我的按钮隐藏在左边(我应该用它来滚动画廊)
我正在发布这两个图像的屏幕截图,1)我想要的图库视图,并且我希望从屏幕左侧添加图像。2)使用指标添加上述代码(设置边距)后更改图库。
我需要更改 xml 或代码中的任何内容吗?
请帮助提前谢谢