MoreActivity

package com.example.traindemo;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
public class MoreActivity extends Activity implements OnClickListener {
 Button bt_ShiShiChaXun, bt_CheCiChaxun, bt_ZhanDaoZhanChaXun,
   bt_LieCheZhanDianLieBiao, bt_DingPiao1, bt_DingPiao2,
   bt_DaiShouDian, bt_ZhanToZhan_PiaoJia;
 public static ProgressDialog dlg;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  requestWindowFeature(Window.FEATURE_NO_TITLE);
  setContentView(R.layout.more);
  init();
 }
 private void init() {
  bt_ShiShiChaXun = (Button) findViewById(R.id.button_ShiShiYuPiaoChaXun);// 12306实时余票查询
  bt_CheCiChaxun = (Button) findViewById(R.id.button_CheCiChaxun);// 车次查询
  bt_ZhanDaoZhanChaXun = (Button) findViewById(R.id.button_ZhanDaoZhanChaXun);// 站到站查询
  bt_LieCheZhanDianLieBiao = (Button) findViewById(R.id.button_LeiCheZhanDianLieBiao);// 列车站点列表
  bt_DingPiao1 = (Button) findViewById(R.id.button_DingPiao1);// 订票①:查询车次
  bt_DingPiao2 = (Button) findViewById(R.id.button_DingPiao2);// 订票②:车次票价查询
  bt_DaiShouDian = (Button) findViewById(R.id.button_DaiShouDian);// 火车票代售点查询
  bt_ZhanToZhan_PiaoJia = (Button) findViewById(R.id.button_ZhanToZhan_PiaoJia);// 站到站查询(含票价)
  bt_ShiShiChaXun.setOnClickListener(this);
  bt_CheCiChaxun.setOnClickListener(this);
  bt_ZhanDaoZhanChaXun.setOnClickListener(this);
  bt_LieCheZhanDianLieBiao.setOnClickListener(this);
  bt_DingPiao1.setOnClickListener(this);
  bt_DingPiao2.setOnClickListener(this);
  bt_DaiShouDian.setOnClickListener(this);
  bt_ZhanToZhan_PiaoJia.setOnClickListener(this);
  dlg = new ProgressDialog(this);
  dlg.setMessage("jjjjjjjjjjjjjjjjjjjjjj");
 }
 @Override
 public void onClick(View v) {
  Intent intent = null;
  switch (v.getId()) {
  case R.id.button_ShiShiYuPiaoChaXun:// 12306实时余票查询
//   dlg.show();
   intent = new Intent(MoreActivity.this, MainActivity.class);
   intent.putExtra("handle", 1);
   break;
   
  case R.id.button_CheCiChaxun:// 车次查询
   intent = new Intent(MoreActivity.this,CheCiChaxun.class);
   break;
  case R.id.button_ZhanDaoZhanChaXun:// 站到站查询
   intent = new Intent(MoreActivity.this,ZhanDaoZhanChaXun.class);
   break;
  case R.id.button_LeiCheZhanDianLieBiao:// 列车站点列表
   
   break;
  case R.id.button_DingPiao1:// 订票①:查询车次
   
   break;
  case R.id.button_DingPiao2:// 订票②:车次票价查询
   
   break;
  case R.id.button_DaiShouDian:// 火车票代售点查询
   
   break;
  case R.id.button_ZhanToZhan_PiaoJia:// 站到站查询(含票价)
   
   break;
  default:
   break;
  }
  startActivity(intent);
 }
}

more.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="@drawable/logo"
    android:gravity="center_vertical"
    android:orientation="vertical" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
        <Button
            android:id="@+id/button_CheCiChaxun"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="车次查询" />
        <Button
            android:id="@+id/button_ZhanDaoZhanChaXun"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="站到站查询" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp" >
        <Button
            android:id="@+id/button_ShiShiYuPiaoChaXun"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="实时余票查询" />
        <Button
            android:id="@+id/button_LeiCheZhanDianLieBiao"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="列车站点列表" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp" >
        <Button
            android:id="@+id/button_DingPiao1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="订票①:查询车次" />
         <Button
            android:id="@+id/button_DaiShouDian"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="火车票代售点查询" />
        
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp" >
        <Button
            android:id="@+id/button_DingPiao2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="订票②:车次票价查询" />
        <Button
            android:id="@+id/button_ZhanToZhan_PiaoJia"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="站到站查询(含票价)" />
    </LinearLayout>
</LinearLayout>
时间: 2024-11-01 21:35:24

MoreActivity的相关文章

Activity生命周期方法的调用顺序工程与测试日志

下面为测试activity的方法的执行顺序   工程与测试资源地址 android工程 AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.finalizetest"

团队作业-第四周-面向对象程序设计

移动课堂点名APP 一.源代码地址:https://github.com/WreckBear/final 二.对程序涉及到的以下几个类进行简要说明: CallNameActivity:显示全局点名的界面. CallNameAll:负责点名选择界面. CallNameRdmActivity:负责随机点名界面. CountActivity:负责统计界面. ImportActivity:负责导入文件的界面. MainActivity:主界面. MoreActivity:更多界面. MyDBOpenHe

CUDA程序编译过程中产生警告的解决方法

有时候经常使用别人用Tabhost+其它的实现demo.单纯利用Tabhost该如何使用呢? 下面看例子: public class MainActivity extends TabActivity { public TabHost tabHost; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 获取对象 tabHost = getTabH

Windows下字符编码转换

有时候经常使用别人用Tabhost+其它的实现demo.单纯利用Tabhost该如何使用呢? 下面看例子: public class MainActivity extends TabActivity { public TabHost tabHost; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 获取对象 tabHost = getTabH

Tabhost最纯净的实现方式

有时候经常使用别人用Tabhost+其它的实现demo.单纯利用Tabhost该如何使用呢? 下面看例子: public class MainActivity extends TabActivity { public TabHost tabHost; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 获取对象 tabHost = getTabH

RxAndroid使用方法

RxAndroid是RxJava的扩展, 可以优雅地处理异步请求. 以前的文章讲述过一些, 这次再补充些内容, 熟悉RxAndroid的使用方法. 要点包含: (1) 链式表达式的使用方式. (2) Lambda的应用. (3) Rx处理网络请求. (4) 线程自动管理, 防止内存泄露. GitHub下载地址. 1. 基础 当然, 从一个崭新的HelloWorld项目开始. 添加Gradle配置. compile 'com.jakewharton:butterknife:7.0.1' compi

Intent ,Bundle 组件 两个Activity 互相传值

第一个Activity 1 /** 2 * 3 */ 4 package com.flysnow.sina.weibo; 5 6 import android.app.Activity; 7 import android.content.Intent; 8 import android.os.Bundle; 9 import android.view.View; 10 import android.widget.Button; 11 import android.widget.EditText;

完美高仿精仿京东商城手机客户端android版源码

完美高仿精仿京东商城手机客户端android版源码,喜欢的朋友可以下载吧. 源码下载: http://code.662p.com/view/4876.html AndroidManifest.xml <?xml version="1.0" encoding="utf-8" ?> - <manifest android:versionCode="6952" android:versionName="2.7.0"

Android Socket IQ聊天软件 之 聊天气泡编码步骤讲解

之前我们说到了关于IQ聊天软件的局域网聊天测试,今天给大伙说说气泡的生成和编码,这不是第三方的东西,是自己 开发的,需要整合布局和容器来实现,其实当你看到源码后,就会觉得很简单,不信你跟着我往下看 首先说说我编程的思想,我们在一个Activity里要动态生成一个消息列表,那ListView是必不可少的容器了,这是其一 其二,我们可以清楚的知道,"我"和好友的气泡底色都是不同的,QQ的底色为:"我"为白底,好友"绿底",不过这是以前老版本的,现在的