Android手机操作系统的应用方式灵活,简单,深受广大编程爱好者的喜爱。尤其是它的开源代码,使得我们能够方便的得到自己想要的功能需求。今天我们就为大家带来了有关Android图片浏览的相关方法。
首先是Android图片浏览中layout xml:
...
- < ?xml version="1.0" encoding="utf-8"?>
- < RelativeLayout xmlns:android="http://schemas.Android.com/apk/res/Android"
- Android:layout_width="fill_parent"
- Android:layout_height="fill_parent">
- < ImageSwitcher Android:id="@+id/switcher"
- Android:layout_width="fill_parent"
- Android:layout_height="fill_parent"
- Android:layout_alignParentTop="true"
- Android:layout_alignParentLeft="true"
- />
- < Gallery Android:id="@+id/gallery"
- Android:background="#55000000"
- Android:layout_width="fill_parent"
- Android:layout_height="60dp"
- Android:layout_alignParentBottom="true"
- Android:layout_alignParentLeft="true"
- Android:gravity="center_vertical"
- Android:spacing="16dp"
- />
- < /RelativeLayout>