Intent
從2013年開始創(chuàng)新互聯(lián)公司專注于”幫助中小企業(yè)+互聯(lián)網(wǎng)”, 也是目前成都地區(qū)具有實力的互聯(lián)網(wǎng)服務(wù)商。團隊致力于為企業(yè)提供--站式網(wǎng)站建設(shè)、移動端應(yīng)用( H5手機營銷、App定制開發(fā)、微信開發(fā))、軟件開發(fā)、信息化解決方案等服務(wù)。
intent
=
new
Intent(this,
目標Activity.calss);
startActivity(intent);
調(diào)用上面的代碼即可實現(xiàn)界面的轉(zhuǎn)跳,
不要這么急促,連這個都還不會,慢慢學(xué)習(xí)吧!
您好,是這樣的:
package ui.one.test;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class Ui3Activity extends Activity {
private Button button1;
private Button button2;
private Button button3;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//獲取控件
button1 = (Button)this.findViewById(R.id.button1);
button2 = (Button)this.findViewById(R.id.button2);
button3 = (Button)this.findViewById(R.id.button3);
//注冊點擊事件
button1.setOnClickListener(listener);
button2.setOnClickListener(listener);
button3.setOnClickListener(listener);
}
private OnClickListener listener = new OnClickListener()
{
public void onClick(View view)
{
// TODO Auto-generated method stub
Button button = (Button) view;//強制轉(zhuǎn)換類型
switch (button.getId())
{
case R.id.button1: {
Intent intent = new Intent();
intent.setClass(Ui3Activity.this, Ui3son1Activity.class);
startActivity(intent);
}break;
case R.id.button2: {
Intent intent = new Intent();
intent.setClass(Ui3Activity.this, Ui3son2Activity.class);
startActivity(intent);
}break;
case R.id.button3: {
Intent intent = new Intent();
intent.setClass(Ui3Activity.this, Ui3son2Activity.class);
startActivity(intent);
}break;
}
}
};
}
Android中返回上一個界面的代碼是CSDN。
手勢滑動在現(xiàn)在android設(shè)備屏幕越來越大的今天應(yīng)用也越來越重要,其實像qq設(shè)置部分很多界面都有滑動返回上一頁的操作。
android開發(fā)中如何從當(dāng)前頁面返回上一頁面 在開發(fā)過程中我們常常會用返回鍵的功能。在一些特定的場合下也可以自己寫返回功能。 一開始我是用intent來創(chuàng)建一個新的頁面。后面發(fā)現(xiàn)這樣等同于重新打開了一個新的頁面。
?xml?version="1.0"?encoding="utf-8"?
LinearLayout?xmlns:android=""
xmlns:app=""
xmlns:tools=""
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="cn.tomcat7.baidu.MainActivity"
LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
ImageView
android:layout_width="64dip"
android:layout_height="64dip"
android:src="@mipmap/ic_launcher"?/
LinearLayout
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical"
TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:text="赤壁賦"
android:textColor="#000000"
android:textSize="16dip"?/
TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="壬戌之秋,七月既望,蘇子與客泛舟游于赤壁之下。清風(fēng)徐來,水波不興。舉酒屬客,誦明月之詩,歌窈窕之章。少焉,月出于東山之上,徘徊于斗牛之間。白露橫江,水光接天。縱一葦之所如,凌萬頃之茫然。浩浩乎如馮虛御風(fēng),而不知其所止;飄飄乎如遺世獨立,羽化而登仙。"?/
/LinearLayout
/LinearLayout
View
android:layout_width="match_parent"
android:layout_height="1dip"
android:background="#f1f1f1"?/
/LinearLayout
網(wǎng)站欄目:android界面代碼,Android界面
網(wǎng)頁網(wǎng)址:http://chinadenli.net/article20/dsdggjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、微信公眾號、軟件開發(fā)、小程序開發(fā)、網(wǎng)站設(shè)計公司、品牌網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)