博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MenuintroduceActivity
阅读量:5830 次
发布时间:2019-06-18

本文共 4692 字,大约阅读时间需要 15 分钟。

hot3.png

package com.gourmetMeal;

import android.os.Bundle;

import android.content.Intent;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MenuintroduceActivity extends CommonActivity implements
  OnClickListener {
 /**
  * 确定按钮
  */
 private Button menuintroducere_btn_ok;
 /**
  * 声明Intent跳转
  */
 private Intent menuintroducere_intent;

 @Override

 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_menuintroduce);
  // 初始化UI
  infoUI();
 }

 /**

  * 初始化UI
  */
 private void infoUI() {
  /*
   * 获得UI控件
   */
  menuintroducere_btn_ok = (Button) findViewById(R.id.menuintroducere_btn_ok);
  menuintroducere_intent = new Intent();

  /*

   * 设置监听事件
   */
  menuintroducere_btn_ok.setOnClickListener(MenuintroduceActivity.this);
 }

 /**

  * 按钮点击事件
  */
 public void onClick(View v) {
  switch (v.getId()) {
  case R.id.menuintroducere_btn_ok: // 确定按钮
   /*
    * 跳转至主界面
    */
   menuintroducere_intent.setClass(MenuintroduceActivity.this,
     MenuActivity.class);
   startActivity(menuintroducere_intent);
   this.finish();
   break;
  }
 }

 /**

  * 重写返回键
  */
 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  /*
   * 跳转至主界面
   */
  if (keyCode == KeyEvent.KEYCODE_BACK) {
   menuintroducere_intent.setClass(MenuintroduceActivity.this,
     MenuActivity.class);
   startActivity(menuintroducere_intent);
   this.finish();
  }
  return false;
 }
}

Xml:

<RelativeLayout xmlns:android=""

    xmlns:tools=""
    android:background="@drawable/menu_background"   
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <RelativeLayout

        android:id="@+id/menuintroducere_lativeLayout_above"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="40dp"
        android:layout_marginRight="40dp"       
        android:layout_marginTop="20dp"       
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true" >

        <TextView

            android:id="@+id/menuintroducere_txt_above"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:text="菜品详细信息" />

        <TextView

            android:id="@+id/menuintroducere_txt_below"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/menuintroducere_scrollView"
            android:text="我的打分" />

        <RatingBar

            android:id="@+id/ratingBar1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/menuintroducere_txt_below" />

        <ScrollView

            android:id="@+id/menuintroducere_scrollView"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/menuintroducere_txt_above">

            <LinearLayout

                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <TextView

                    android:id="@+id/menuintroducere_txt_information"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="************************************************************************************"

                    android:inputType="textMultiLine"/>

            </LinearLayout>
        </ScrollView>
    </RelativeLayout>

    <RelativeLayout

        android:id="@+id/menuintroducere_lativeLayout_center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="40dp"
        android:layout_marginRight="40dp"       
        android:layout_above="@+id/menuintroducere_lativeLayout_below"
        android:layout_below="@+id/menuintroducere_lativeLayout_above" >

        <EditText

            android:id="@+id/menuintroducere_etxt_result"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:inputType="textMultiLine">

            <requestFocus />

        </EditText>

    </RelativeLayout>

    <RelativeLayout

        android:id="@+id/menuintroducere_lativeLayout_below"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_marginLeft="40dp"
        android:layout_marginRight="40dp"
        android:layout_marginBottom="10dp"        >

        <Button

            android:id="@+id/menuintroducere_btn_ok"
            android:textColor="#FFFFFF"
            android:background="@layout/button_ok"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"  
            android:layout_marginTop="10dp"        
            android:layout_alignParentRight="true"
            android:text="" />

    </RelativeLayout>

</RelativeLayout>

转载于:https://my.oschina.net/u/1994482/blog/415291

你可能感兴趣的文章
C++ primer plus
查看>>
python mysqlDB
查看>>
UVALive 3942 Remember the Word Tire+DP
查看>>
从微软的DBML文件中我们能学到什么(它告诉了我们什么是微软的重中之重)~目录...
查看>>
被需求搞的一塌糊涂,怎么办?
查看>>
c_数据结构_队的实现
查看>>
jquery 选择器总结
查看>>
Qt设置背景图片
查看>>
【阿里云文档】常用文档整理
查看>>
java中的Volatile关键字
查看>>
前端自定义图标
查看>>
实验二
查看>>
独立开发一个云(PaaS)的核心要素, Go, Go, Go!!!
查看>>
MyBatis使用DEMO及cache的使用心得
查看>>
网站文章如何能自动判定是抄袭?一种算法和实践架构剖析
查看>>
【OpenCV学习】滚动条
查看>>
ofo用科技引领行业进入4.0时代 用户粘性连续8个月远甩摩拜
查看>>
兰州青年志愿者“中西合璧”玩快闪 温暖旅客回家路
查看>>
计划10年建10万廉价屋 新西兰政府:比想象中难
查看>>
甘肃发首版《3D打印职业教育教材》:校企合作育专才
查看>>