Intent
從2013年開始創新互聯公司專注于”幫助中小企業+互聯網”, 也是目前成都地區具有實力的互聯網服務商。團隊致力于為企業提供--站式網站建設、移動端應用( H5手機營銷、App定制開發、微信開發)、軟件開發、信息化解決方案等服務。
intent
=
new
Intent(this,
目標Activity.calss);
startActivity(intent);
調用上面的代碼即可實現界面的轉跳,
不要這么急促,連這個都還不會,慢慢學習吧!
您好,是這樣的:
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;//強制轉換類型
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。
手勢滑動在現在android設備屏幕越來越大的今天應用也越來越重要,其實像qq設置部分很多界面都有滑動返回上一頁的操作。
android開發中如何從當前頁面返回上一頁面 在開發過程中我們常常會用返回鍵的功能。在一些特定的場合下也可以自己寫返回功能。 一開始我是用intent來創建一個新的頁面。后面發現這樣等同于重新打開了一個新的頁面。
?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="壬戌之秋,七月既望,蘇子與客泛舟游于赤壁之下。清風徐來,水波不興。舉酒屬客,誦明月之詩,歌窈窕之章。少焉,月出于東山之上,徘徊于斗牛之間。白露橫江,水光接天。縱一葦之所如,凌萬頃之茫然。浩浩乎如馮虛御風,而不知其所止;飄飄乎如遺世獨立,羽化而登仙。"?/
/LinearLayout
/LinearLayout
View
android:layout_width="match_parent"
android:layout_height="1dip"
android:background="#f1f1f1"?/
/LinearLayout
網站欄目:android界面代碼,Android界面
網頁網址:http://vcdvsql.cn/article20/dsdggjo.html
成都網站建設公司_創新互聯,為您提供關鍵詞優化、微信公眾號、軟件開發、小程序開發、網站設計公司、品牌網站制作
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯