新浪微博开发之主程序界面的实现

2023-11-20 15:48

本文主要是介绍新浪微博开发之主程序界面的实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

授权用户登录后进入到程序主界面,主界面包括顶部标题栏、中间微博内容栏和底部菜单栏。顶部标题栏又包括发微博按钮、标题、和刷新按钮,而中间内容栏为ListView,底部菜单栏是使用RadioGroup实现的,关于底部菜单栏的实现可参考这边文章:新浪微博布局学习——妙用TabHost写的很好,这里就不做过多的解释了!

主界面效果图:

主界面布局代码如下:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical" android:layout_width="fill_parent"android:background="@android:color/white"android:layout_height="fill_parent"><include android:id="@+id/home_title" layout="@layout/title" /><TabHost android:id="@android:id/tabhost" android:layout_width="fill_parent"android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"><LinearLayout android:orientation="vertical"android:layout_width="fill_parent" android:layout_height="fill_parent"><FrameLayout android:id="@android:id/tabcontent"android:layout_width="fill_parent" android:layout_height="0.0dip"android:layout_weight="1.0" /><TabWidget android:id="@android:id/tabs"android:visibility="gone" android:layout_width="fill_parent"android:layout_height="wrap_content" android:layout_weight="0.0" /><RadioGroup android:gravity="center_vertical"android:layout_gravity="bottom" android:orientation="horizontal"android:id="@+id/main_radio" android:background="@drawable/bg_title"android:layout_width="fill_parent" android:layout_height="wrap_content"><RadioButton android:text="@string/main_home"android:checked="true" android:id="@+id/radio_button0"android:drawableTop="@drawable/icon_home"style="@style/main_tab_bottom" /><RadioButton android:id="@+id/radio_button1"android:text="@string/main_news"android:drawableTop="@drawable/icon_meassage" style="@style/main_tab_bottom" /><RadioButton android:id="@+id/radio_button2"android:text="@string/main_my_info"android:drawableTop="@drawable/icon_selfinfo" style="@style/main_tab_bottom" /><RadioButton android:id="@+id/radio_button3"android:text="@string/main_square"android:drawableTop="@drawable/icon_square" style="@style/main_tab_bottom" /><RadioButton android:id="@+id/radio_button4"android:text="@string/main_more"android:drawableTop="@drawable/icon_more" style="@style/main_tab_bottom" /></RadioGroup></LinearLayout></TabHost>
</LinearLayout>
主界面代码如下:

package com.cloay.weibo.ui;import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.ImageButton;
import android.widget.RadioButton;
import android.widget.TabHost;
import android.widget.TextView;import com.cloay.weibo.R;
import com.cloay.weibo.service.MainService;
/*** 使用TabActivity实现主界面* @author Cloay* 2012-2-24* 下午04:26:07*/
public class MainActivity extends TabActivity implements OnCheckedChangeListener  {private ImageButton updateStatus;private ImageButton refresh;private TabHost tabHost;private Intent homeIntent;  //主页private Intent mesIntent;   //信息private Intent infoIntent;  //个人资料private Intent squareIntent;  //广场private Intent moreIntent;    //更多private TextView title;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);requestWindowFeature(Window.FEATURE_NO_TITLE);   //去掉系统标题栏MainService.allActivity.add(this);setContentView(R.layout.main);this.tabHost = this.getTabHost();initData();    //初始化数据initBtnListener();//为各个按钮设置监听器setTab();//增加Tab项}/*** 增加Tab项*/private void setTab() {tabHost.addTab(tabHost.newTabSpec("C_HOME").setIndicator("C_HOME").setContent(homeIntent));tabHost.addTab(tabHost.newTabSpec("C_MES").setIndicator("C_MES").setContent(mesIntent));tabHost.addTab(tabHost.newTabSpec("C_INFO").setIndicator("C_INFO").setContent(infoIntent));tabHost.addTab(tabHost.newTabSpec("C_SQUARE").setIndicator("C_SQUARE").setContent(squareIntent));tabHost.addTab(tabHost.newTabSpec("C_MORE").setIndicator("C_MORE").setContent(moreIntent));}/*** 为底部按钮设置监听器*/private void initBtnListener() {((RadioButton)findViewById(R.id.radio_button0)).setOnCheckedChangeListener(this);((RadioButton)findViewById(R.id.radio_button1)).setOnCheckedChangeListener(this);((RadioButton)findViewById(R.id.radio_button2)).setOnCheckedChangeListener(this);((RadioButton)findViewById(R.id.radio_button3)).setOnCheckedChangeListener(this);((RadioButton)findViewById(R.id.radio_button4)).setOnCheckedChangeListener(this);}/*** 设置各个intent*/private void initData() {title = (TextView) findViewById(R.id.title_text);updateStatus = (ImageButton) findViewById(R.id.title_bt_left);updateStatus.setOnClickListener(new OnClickListener() { //打开发微博界面@Overridepublic void onClick(View v) {Intent intent = new Intent(MainActivity.this, UpdateStatus.class);startActivity(intent);}});refresh = (ImageButton) findViewById(R.id.title_bt_right);  //refresh.setOnClickListener(new OnClickListener() {  //刷新按钮监听事件//获取当前HomeActivity,调用refresh()方法 刷新数据@Overridepublic void onClick(View v) {HomeActivity home = (HomeActivity) getCurrentActivity();   home.refresh();   }});homeIntent = new Intent(this, HomeActivity.class);mesIntent = new Intent(this, MesActivity.class);infoIntent = new Intent(this, InfoActivity.class);squareIntent = new Intent(this, SquareActivity.class);moreIntent = new Intent(this, MoreActivity.class);}@Overridepublic void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {if(isChecked){switch(buttonView.getId()){case R.id.radio_button0:this.tabHost.setCurrentTabByTag("C_HOME");  //跳转到首页title.setText("微博主页");refresh.setVisibility(View.VISIBLE);break;case R.id.radio_button1:this.tabHost.setCurrentTabByTag("C_MES");   //跳转到消息页title.setText("消息提醒");refresh.setVisibility(View.GONE);break;case R.id.radio_button2:refresh.setVisibility(View.GONE);title.setText("个人资料");this.tabHost.setCurrentTabByTag("C_INFO");   //个人资料break;case R.id.radio_button3:refresh.setVisibility(View.GONE);title.setText("微博广场");this.tabHost.setCurrentTabByTag("C_SQUARE");  //微博广场break;case R.id.radio_button4:refresh.setVisibility(View.GONE);title.setText("更多");this.tabHost.setCurrentTabByTag("C_MORE");	  //更多菜单break;}}}@Overridepublic boolean dispatchKeyEvent(KeyEvent event) {if((event.getKeyCode() == KeyEvent.KEYCODE_BACK) && (event.getAction() == KeyEvent.ACTION_DOWN)){// 弹出退出提示对话框MainService.showExitDlg(MainActivity.this);
//			System.out.println("=======> dispatchKeyEvent");return true;}return super.dispatchKeyEvent(event);}
}

该注释的地方我都详细注释了,这里就不过多作解释了!下一篇我们将学习微博的获取!

有什么问题及建议请留言,大家一起交流学习!

说明:转载请注明出处!

这篇关于新浪微博开发之主程序界面的实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/395710

相关文章

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

opencv图像处理之指纹验证的实现

《opencv图像处理之指纹验证的实现》本文主要介绍了opencv图像处理之指纹验证的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录一、简介二、具体案例实现1. 图像显示函数2. 指纹验证函数3. 主函数4、运行结果三、总结一、

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.