亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

實現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

阜平县| 杭锦后旗| 大安市| 鹤壁市| 宾川县| 花垣县| 日照市| 五家渠市| 海淀区| 阳新县| 阳曲县| 申扎县| 永新县| 美姑县| 浮山县| 获嘉县| 民县| 堆龙德庆县| 云梦县| 聊城市| 峨眉山市| 富蕴县| 紫阳县| 陕西省| 兰州市| 子长县| 洪雅县| 湖南省| 泉州市| 手机| 遵义市| 洞口县| 扎赉特旗| 刚察县| 盐边县| 绥中县| 双流县| 天津市| 南靖县| 肥乡县| 衡南县|