91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

秦皇岛市| 宣恩县| 吴忠市| 广州市| 巴林左旗| 页游| 敦煌市| 大足县| 潍坊市| 漳浦县| 宽城| 象州县| 浙江省| 大港区| 体育| 凌海市| 喜德县| 阿拉善盟| 商城县| 边坝县| 鄂尔多斯市| 牡丹江市| 达日县| 肃南| 仙游县| 松潘县| 新和县| 资讯| 大同市| 平罗县| 霍城县| 乃东县| 吉隆县| 桓台县| 虎林市| 安新县| 新龙县| 宜兴市| 洛川县| 嫩江县| 余庆县|