中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

實現Button控制ImageView顯示下一張照片

發布時間:2020-08-10 12:35:16 來源:網絡 閱讀:2075 作者:吃素只吃肉 欄目:移動開發

話不多說,直接上碼:xml文件,簡單的線性布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center">

    </LinearLayout>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/button3"
        android:text="下一張"
        android:layout_gravity="right" />

    <ImageView
        android:id="@+id/p_w_picpath2"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/cat"
        android:scaleType="fitCenter"
    />
</LinearLayout>

效果圖實現Button控制ImageView顯示下一張照片




package com.example.administrator.myapplication;

import android.app.Activity;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.ImageView;

/**
 * Created by Administrator on 2015/6/6.
 */
public class Textp_w_picpathActivity extends Activity{
    //定義一個訪問照片的數組
    int[] p_w_picpaths=new int[]{
            R.drawable.cat,
            R.drawable.dog,
            R.drawable.happen,
            R.drawable.hashiqi,
            R.drawable.what,
            R.drawable.name,
            };
//定義默認顯示的照片
    int currentImg=2;
       protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);//隱藏TITLE
        setContentView(R.layout.p_w_picpathview);
        final ImageView p_w_picpath2=(ImageView)findViewById(R.id.p_w_picpath2);
        final Button next=(Button)findViewById(R.id.button3);
              //定義查看下一張圖片的監聽器
        next.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //控制Image View顯示下一張照片
                p_w_picpath2.setImageResource(
                        p_w_picpaths[++currentImg % p_w_picpaths.length]
                );
            }
        });


}}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

淮滨县| 喀喇| 霞浦县| 鹿泉市| 萍乡市| 磐安县| 阿拉善右旗| 民权县| 垣曲县| 阿克陶县| 鄂伦春自治旗| 隆昌县| 桃源县| 乌兰浩特市| 东台市| 遵义县| 常山县| 永定县| 伊宁县| 西青区| 山阴县| 稻城县| 文安县| 西丰县| 海安县| 蒙城县| 亳州市| 朝阳区| 沧源| 黄龙县| 云南省| 水富县| 孝感市| 衡东县| 鄂尔多斯市| 柘荣县| 宁晋县| 洞口县| 高碑店市| 伊宁市| 新昌县|