Android簡(jiǎn)易圖片瀏覽器的實(shí)現(xiàn)
閑著沒事,花了半個(gè)小時(shí)用這幾天發(fā)布的部分內(nèi)容來做一個(gè)Android簡(jiǎn)易圖片瀏覽器小程序,代碼設(shè)main_activity.xml設(shè)計(jì)首界面,設(shè)計(jì)三個(gè)按鈕并賦予id,然后在MainActivity調(diào)用各個(gè)btn的id實(shí)現(xiàn)set方法,每個(gè)方法里實(shí)現(xiàn)intent跳轉(zhuǎn)對(duì)應(yīng)的界面即可!代碼如下:(Main2-3-4Activity的代碼我就不寫了,在建立其MainActivity.java文件時(shí),其xml對(duì)直接出來,并且我的MainActivity.java也沒有寫內(nèi)容)
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="動(dòng)漫"
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="歡迎來到動(dòng)漫世界"
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);
}
});
}
}





到此這篇關(guān)于Android簡(jiǎn)易圖片瀏覽器的實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)Android 圖片瀏覽器內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
android 通過向viewpage中添加listview來完成滑動(dòng)效果(類似于qq滑動(dòng)界面)
android 通過向viewpage中添加listview來完成滑動(dòng)效果(類似于qq滑動(dòng)界面),需要的朋友可以參考一下2013-05-05
Android消息機(jī)制Handler用法總結(jié)
這篇文章介紹了Android消息機(jī)制Handler用法總結(jié),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-11-11
Android實(shí)現(xiàn)支付寶手勢(shì)密碼功能
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)支付寶手勢(shì)密碼功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-03-03
Android實(shí)現(xiàn)自定義圓形進(jìn)度條
這篇文章主要介紹了Android自定義圓形進(jìn)度條實(shí)現(xiàn)代碼,進(jìn)度條在Android中教程經(jīng)常使用到,本文向大家分享了Android實(shí)現(xiàn)自定義圓形進(jìn)度條的代碼,感興趣的小伙伴們可以參考一下2016-03-03
Android持久化技術(shù)之文件的讀取與寫入實(shí)例詳解
這篇文章主要介紹了Android持久化技術(shù)之文件的讀取與寫入操作,結(jié)合實(shí)例形式較為詳細(xì)的分析講述了Android持久化操作的相關(guān)技巧與具體實(shí)現(xiàn)方法,需要的朋友可以參考下2016-01-01
Android自定義控件實(shí)現(xiàn)下拉刷新效果
這篇文章主要為大家詳細(xì)介紹了Android自定義控件實(shí)現(xiàn)下拉刷新效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-08-08
快速關(guān)閉android studio的自動(dòng)保存功能教程
這篇文章主要介紹了快速關(guān)閉android studio的自動(dòng)保存功能教程,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-04-04

