Android项目页面跳转小Demo

近期在做Android项目的开发,刚刚接触会有非常多新东西须要学习,从环境的搭建到语言的熟悉都是须要一步步完毕的,接下来就拿一个页面跳转的样例来和大家分享一下自己的心得体会。

採用的架构:

Demo中採用的是src/res/Manifest File架构。因为自己是新手。就依照这个传统的架构来做了。

watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdTAxMDUwODgyNg==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast">

整体结构:

项目中主要须要在src文件里写自己的java类、res的layout文件里写自己页面的xml文件,还有就是在mainifest中完毕对java类的配置。

watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdTAxMDUwODgyNg==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast">

该样例实现的是当单击“helloword”页面中的button按钮时跳转到“second”页面中,效果例如以下:

跳转前

跳转后

首先我们须要建立两个java类:MainActivity & SecondActivity,代码例如以下:

【MainActivity】

<span style="font-family:KaiTi_GB2312;font-size:18px;">package com.example;

import android.R.color;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.pdf.PdfDocument;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {
	//定义自己的
	private Button btnButton;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btnButton = (Button)findViewById(R.id.button1);
        btnButton.setWidth(200);
        btnButton.setHeight(50);
        btnButton.setBackgroundColor(Color.RED);

        btnButton.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				Intent intent = new Intent();
				intent.setClass(MainActivity.this, SecondActivity.class);
				startActivity(intent);
			}
		});

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}
</span>

【SecondActivity】

<span style="font-family:KaiTi_GB2312;font-size:18px;">package com.example;

import android.app.Activity;
import android.os.Bundle;

public class SecondActivity extends Activity{

	protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);

	}
}
</span>

同一时候在layout目录先相应建立xml文件。以完毕页面的设计,

【activity_main】

<span style="font-family:KaiTi_GB2312;font-size:18px;"><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="119dp"
        android:layout_toRightOf="@+id/textView1"
        android:text="Button" />

</RelativeLayout></span>

【activity_second】

<span style="font-family:KaiTi_GB2312;font-size:18px;"><?

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" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="second" />

</LinearLayout>
</span>

接下来须要我们在manifestfile文件里完毕对建立的两个java类的配置:

<span style="font-family:KaiTi_GB2312;font-size:18px;"><?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name="com.example.SecondActivity"
            android:label="@string/app_name" >
            <intent-filter>
            </intent-filter>
        </activity>
    </application>

</manifest>
</span>

须要强调的是每加入一个java类。都须要在AndroidManifest中完毕对应的配置!

这样一个简单的Android小Demo就成型了。样例非常easy,很多其它的是对开发环境的熟悉和了解。希望能够对刚刚接触Android开发的朋友们有所帮助,有问题也能够随时联系我。

时间: 2024-10-10 15:19:08

Android项目页面跳转小Demo的相关文章

android progressBar和seekBar的小DEMO

  这里演示的是android ProgressBar的条形进度条,因为android条形进度条初始时静态的而不像圆形的进度条是动态的: 而seekbar是android的拖动条,使用场景比如在音乐播放或者视频播放的时候~~~~ xml布局文件(需要注意,在使用条形进度条的时候要选择的style类型为 "?android:attr/progressBarStyleHorizontal" ): <RelativeLayout xmlns:android="http://s

Vue简单项目(页面跳转,参数传递)

1.和上篇文章一样的建文件的步骤 2.建立成功之后,在src文件夹下面添加新的文件夹pages 3.在pages里面添加新的文件Home.Vue和Detail.Vue 4.设Home.Vue为项目启动的初始页,在routes下的index.js里面添加以下代码,这时即可设为Home为初始页(App.Vue不可删除) 5.在Home.Vue中实现跳转的代码 <router-link to="/Detail">跳转到详情页</router-link> 6.启动项目,

Java web开发中页面跳转小技巧——跳转后新页面在新窗口打开

最近学习Java web,在学习过程中想实现一个需求,就是在jsp页面跳转的时候,希望跳转后的新页面在新窗口中打开, 而不是覆盖原来的页面,这个需求使我困惑了好长时间,后来通过大海捞针似的在网上寻找方法,最后终于得以解决, 现将此方法跟大家分享,如果有不足的地方,请多包涵,我的初衷是能帮助到有这方面需要的人. 之前我在网上也曾搜到过相对靠谱的方法,就是在jsp页面相应位置加入代码:target="_black",如 <a href="articleView?id=${a

Android tab_Host页面跳转,传值,刷新等问题汇总

之前做了一个项目是关于Tab_Host的,现在完成了恰逢闲余写份总结,主要涉及里面遇到问题以及解决方案的. (首先说明这份代码是在eoe 下载的,这里感谢分享的那位朋友,限于我的工程是公司的不能拿出来了,只能那这份原来的代码进行修改贴出来,欢迎拍砖): import android.app.TabActivity; import android.content.Intent; import android.os.Bundle; import android.widget.RadioGroup;

android 实现页面跳转及数据的传递和返回

1.实现效果: 原始界面:     ----传输数据----------> 填写数据后,点击计算后界面-----返回数据----->点击返回按钮后,回到上一个页面,依旧能够保留之前保持的数据                                   2.实现代码: a.两个布局文件: activity_main.xml: <?xml version="1.0" encoding="utf-8"?> <LinearLayout

爬虫:工作中编写的一个python爬取web页面信息的小demo

最近公司要求编写一个爬虫,需要完善后续金融项目的数据,由于工作隐私,就不付被爬的网址url了,下面总结下spider的工作原理. 语言:python:工具:jupyter: (1)使用requests模块,获取url页面. import requests url = "http://www.~~~~~~~~~~~~~~~~~~~~~~~~~~" r = requests.get(url) (2)解析html页面(若是pdf页面需要其他工具模块)需要使用BeautifulSoup模块,把

Android 实现页面跳转并传递参数

首先我们来看一下实现的功能:      第二,我们看一下实现这个功能,总共会接触到哪些文件和代码. 1.实现本功能总共涉及如下6个文件 2.实现本功能,总共涉及如下6个文件中的如下代码: (1) 效果: (2)为按钮编写响应事件函数 sendMessage (3)创建第二个activity,即第二张页面,并在onCreate方法中编写页面初始化的方法(相当于iOS中的initView).这里初始化的流程是,接收响应事件传递过来的数据,并显示. (4)系统自动生成第二个activity的xml文件

Android startActivity 页面跳转

//fromstartActivity(intent)startActivityForResult(intent, requestCode) //tosetResult(resultCode)setResult(resultCode, intent) //backonActivityForResult(requestCode, resultCode, intent) Android开发 Fragment中调用startActivityForResult返回错误的requestCode 之所以返回

Android中实现activity的页面跳转并传值

一个Android应用程序很少会只有一个Activity对象,如何在多个Activity之间进行跳转,而且能够互相传值是一个很基本的要求. 本次我们就讲一下,Android中页面跳转以及传值的几种方式! Activity跳转与传值,主要是通过Intent类来连接多个Activity. 1. Intent显式意图 (1) 最常见最一般的页面跳转代码,很简单,如下: Intent intent = new Intent(A.this, SecondActivity.class); startActi