鄭州app開發(fā)運用Android進行制作app時候,遇到顯示意圖intent。下面是關于意圖的一個小案例,分享給大家。代碼可以直接運行。
創(chuàng)新互聯(lián)建站-專業(yè)網站定制、快速模板網站建設、高性價比林甸網站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式林甸網站制作公司更省心,省錢,快速模板網站建設找我們,業(yè)務覆蓋林甸地區(qū)。費用合理售后完善,10年實體公司更值得信賴。
布局代碼:
(activity_main.xml)
{?xml version="1.0" encoding="utf-8"?}
{RelativeLayout 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"
android:orientation="vertical"
tools:context=".MainActivity"}
{EditText
android:id="@+id/et_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="請輸入姓名" /}
{RadioGroup
android:id="@+id/rg_gender"
android:layout_below="@id/et_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"}
{Radiobutton
android:id="@+id/rb_male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男"
/}
{Radiobutton
android:id="@+id/rb_female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"
/}
{/RadioGroup}
{button
android:id="@+id/btn_calc"
android:layout_below="@id/rg_gender"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="計算人品"/}
{/RelativeLayout}
(activity_result.xml)布局代碼
{?xml version="1.0" encoding="utf-8"?}
{RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"}
{TextView
android:id="@+id/tv_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="姓名:王曉冬 性別:男" /}
{TextView
android:id="@+id/tv_result"
android:layout_below="@id/tv_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="計算人品"/}
{/RelativeLayout}
java代碼:
package cn.xhhkj.xhhkjtest;
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;
import android.widget.EditText;
import android.widget.RadioGroup;
public class MainActivity extends Activity implements OnClickListener{
private EditText et_name;
private RadioGroup rg_gender;
private button btn_calc;
@Override
protected void onCreate(bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et_name =findViewbyId(R.id.et_name);
rg_gender = findViewbyId(R.id.rg_gender);
btn_calc =findViewbyId(R.id.btn_calc);
btn_calc.setOnClickListener(this);
}
@Override
public void onClick(View v) {
String name = et_name.getText().toString().trim();
boolean isMale = true;
int id = rg_gender.getCheckedRadiobuttonId();
switch (id) {
case R.id.rb_male:
isMale = true;
break;
case R.id.rb_female:
isMale = false;
break;
}
Intent intent = new Intent(getApplicationContext(), ResultActivity.class);
intent.putExtra("name",name);
intent.putExtra("gender", isMale);
startActivity(intent);
}
}
(resultActivity)java代碼
package cn.xhhkj.xhhkjtest;
新聞標題:android顯示意圖實例
文章起源:http://m.newbst.com/article2/scdioc.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供虛擬主機、云服務器、手機網站建設、響應式網站、電子商務、域名注冊
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)