image_item&activity_big_image&fragment_image

image_item&activity_big_image&fragment_image

<?xml version="1.0" encoding="utf-8"?>

<!--线性布局-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

   android:layout_width="match_parent"

   android:layout_ />
   android:orientation="vertical">

   <!--图像视图-->

   <ImageView

       android:id="@+id/img_item"

       android:layout_width="200dp"

       android:layout_height="200dp" />

   <!--进度条-->

   <ProgressBar

       android:id="@+id/img_pb"

       

       android:layout_width="match_parent"

       android:layout_height="2dp" />

</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>

<!--相对布局-->

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

   xmlns:tools="http://schemas.android.com/tools"

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   android:paddingBottom="@dimen/activity_vertical_margin"

   android:paddingLeft="@dimen/activity_horizontal_margin"

   android:paddingRight="@dimen/activity_horizontal_margin"

   android:paddingTop="@dimen/activity_vertical_margin"

   tools:context="org.xutils.sample.BigImageActivity">

   <!--图像视图-->

   <ImageView

       android:id="@+id/iv_big_img"

       android:layout_width="match_parent"

       android:layout_height="match_parent" />

</RelativeLayout><?xml version="1.0" encoding="utf-8"?>

<!--线性布局-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   android:orientation="vertical">

   <!--列表视图-->

   <ListView

       android:id="@+id/lv_img"

       android:layout_width="fill_parent"

       android:layout_height="fill_parent" />

</LinearLayout>

image_item&activity_big_image&fragment_image