当前位置:首页 > 谈天说地

Android简易图片浏览器的实现

34资源网2022-03-31349

闲着没事,花了半个小时用这几天发布的部分内容来做一个android简易图片浏览器小程序,代码设main_activity.xml设计首界面,设计三个按钮并赋予id,然后在mainactivity调用各个btn的id实现set方法,每个方法里实现intent跳转对应的界面即可!代码如下:(main2-3-4activity的代码我就不写了,在建立其mainactivity.java文件时,其xml对直接出来,并且我的mainactivity.java也没有写内容)

main_activity.xml

<?xml version="1.0" encoding="utf-8"?>
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".mainactivity"
    android:orientation="vertical"
    android:background="@drawable/bj"
 
    >
 
    <textview
 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_margintop="60dp"
        android:textsize="50dp"
        android:textcolor="#ff9800"
        android:text="csdn图片大全" />
<button
    android:id="@+id/btn1"
    android:layout_margintop="40dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="动漫"
    android:textsize="45sp"
    android:textcolor="@color/coloraccent"
 
    />
    <button
        android:id="@+id/btn2"
        android:layout_margintop="40dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="游戏"
        android:textsize="45sp"
        android:textcolor="@color/coloraccent"
 
        />
    <button
        android:id="@+id/btn3"
        android:layout_margintop="40dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="美女"
        android:textsize="45sp"
        android:textcolor="@color/coloraccent"
 
        />
 
</linearlayout>

activity_main2.xml

<?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:background="#7a3f51b5"
    android:orientation="vertical">
    <scrollview
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <linearlayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
 
 
            <textview
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="欢迎来到动漫世界"
                android:gravity="center"
                android:textsize="40sp"
                />
            <imageview
                android:background="@drawable/dm"
                android:layout_width="match_parent"
                android:layout_height="350dp"
                />
            <imageview
                android:background="@drawable/dm1"
                android:layout_width="match_parent"
                android:layout_height="350dp"
                />
            <imageview
                android:background="@drawable/dm2"
                android:layout_width="match_parent"
                android:layout_height="350dp"
                />
            <imageview
                android:background="@drawable/dm3"
                android:layout_width="match_parent"
                android:layout_height="350dp"
                />
            <imageview
                android:background="@drawable/dm4"
                android:layout_width="match_parent"
                android:layout_height="350dp"
                />
            <imageview
                android:background="@drawable/dm5"
                android:layout_width="match_parent"
                android:layout_height="350dp"
                />
            <imageview
                android:background="@drawable/dm6"
                android:layout_width="match_parent"
                android:layout_height="350dp"
                />
            <textview
                android:gravity="center"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textsize="40sp"
                android:text="滑到最后一页了哦"
                />
        </linearlayout>
    </scrollview>
</linearlayout>

activity_main3.xml

<?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:background="#ff226f"
    android:orientation="vertical">
    <scrollview
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <linearlayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
 
 
            <textview
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="欢迎来到游戏世界"
                android:gravity="center"
                android:textsize="40sp"
                />
            <imageview
                android:background="@drawable/youxi"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi2"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi3"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi4"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi1"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi5"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi6"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi7"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <imageview
                android:background="@drawable/youxi8"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                />
            <textview
                android:gravity="center"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textsize="40sp"
                android:text="滑到最后一页了哦"
                />
        </linearlayout>
    </scrollview>
</linearlayout>

activity_main4.xml

<?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">
    <scrollview
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <linearlayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
 
 
            <textview
                android:background="#9a86af4c"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="欢迎来到美女世界"
 
                android:gravity="center"
                android:textsize="40sp"
                />
            <imageview
 
                android:background="@drawable/mn1"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn2"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn3"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn4"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn5"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn6"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn7"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn8"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn9"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
            <imageview
                android:background="@drawable/mn10"
                android:layout_width="match_parent"
                android:layout_height="550dp"
                />
 
 
            <textview
                android:gravity="center"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textsize="40sp"
                android:text="滑到最后一页了哦"
                />
        </linearlayout>
    </scrollview>
</linearlayout>

mainactivity,java

package com.example.allphones;
 
 
import androidx.appcompat.app.appcompatactivity;
 
import android.content.intent;
import android.os.bundle;
import android.view.view;
import android.widget.button;
 
public class mainactivity extends appcompatactivity {
private button btn1,btn2,btn3;
    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);
        setcontentview(r.layout.activity_main);
 
        btn1=findviewbyid(r.id.btn1);
        btn2=findviewbyid(r.id.btn2);
        btn3=findviewbyid(r.id.btn3);
                btn1.setonclicklistener(new view.onclicklistener() {
                    @override
                    public void onclick(view v) {
                        intent intent=new intent(mainactivity.this,main2activity.class);
                        startactivity(intent);
            }
        });
        btn2.setonclicklistener(new view.onclicklistener() {
            @override
            public void onclick(view v) {
 
                intent intent=new intent(mainactivity.this,main3activity.class);
                startactivity(intent);
            }
        });
        btn3.setonclicklistener(new view.onclicklistener() {
            @override
            public void onclick(view v) {
 
                intent intent=new intent(mainactivity.this,main4activity.class);
                startactivity(intent);
 
            }
        });
    }
}

 到此这篇关于android简易图片浏览器的实现的文章就介绍到这了,更多相关android 图片浏览器内容请搜索萬仟网以前的文章或继续浏览下面的相关文章希望大家以后多多支持萬仟网!

看完文章,还可以扫描下面的二维码下载快手极速版领4元红包

快手极速版二维码

快手极速版新人见面礼

除了扫码领红包之外,大家还可以在快手极速版做签到,看视频,做任务,参与抽奖,邀请好友赚钱)。

邀请两个好友奖最高196元,如下图所示:

快手极速版邀请好友奖励

扫描二维码推送至手机访问。

版权声明:本文由34楼发布,如需转载请注明出处。

本文链接:https://www.34l.com/post/11469.html

分享给朋友:

相关文章

适合普通人做的小本创业点子

适合普通人做的小本创业点子

适合普通人做的小本创业生意有什么??随着零售行业的兴起,小型超市便利店生意成为创业者首选的项目之一,主要原因在于:投入资金小、回笼快,不需要太大的现金流来支撑、一年半左右就能回本。这对于拥有一部分闲置资金,想创业的投资者来说简直是很好的创业…

一周涨粉几百万,“张同学”凭什么火?

一周涨粉几百万,“张同学”凭什么火?

编者按:本文来自微信公众号时趣研究院(ID:SocialTouch2020),作者:时有趣,创业邦经授权转载 在最近的一段时间里,名叫“张同学”的博主刷屏了抖音,相关话题频频登上热榜,甚至还得到了人民网的点评。 张同学第一个视频的发布日期…

区块链开发技术有前景吗(区块链技术开发费用)

由于人们对大数据、区块链、人工智能行业的认识越来越深入,企业可以通过大数据、区块链、人工智能等思维和技术寻求变革。传统行业依靠原有产业优势“后来居上”,低调布局区块链技术,传统产业企业和科技企业同时进入产业区块链赛道。在区块链发展报告中,我…

windows系统还原点怎么用(电脑设置还原点的方法)

windows系统还原点怎么用(电脑设置还原点的方法)

设置系统还原点可以恢复我们在Win10计算机中所需的状态,并确保系统继续使用而无需重新加载。但对于系统还原,许多小伙伙伴不知道如何设置还原点,并且特定步骤与每个人共享。 Win10计算机设置恢复点 1.右键单击桌面上此计算机,右键单击菜单…

ppp文件类型(ppp项目通俗解释)

ppp文件类型(ppp项目通俗解释)

在化解地方债务、融资渠道转型和各部委推动等多重因素驱动下,从2014下半年起国内各地兴起PPP热,工作开展较好的省份已有PPP项目开花结果,这让有意参与PPP运作的各市场主体眼前一亮,激发了更大兴趣。 比如金融机构,任何PPP项目的成功实施…