Android端的微博项目

2024-09-01 14:08
文章标签 android 微博 项目 端的

本文主要是介绍Android端的微博项目,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

登录界面如下:

 

每个控件都要实现功能。例如:申请账号按钮被点击后转到一个新的Activity,进行帐号申请的工作。

登录按钮被点击后转到微博界面(一个新的Activity),在TextView里显示以前发布的微博内容和时间(可以设置多个TextView),并有按钮“发布新微博”和“返回”。

发布新微博按钮被点击后转到一个新的Activity,该页面有一个TextView、一个EditText,一个“提交”按钮。TextView提示EditText剩余的字符数,超出限制后进行提醒,EditText的最大字符数是300。点击提交按钮后转到微博界面.

主界面:

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Button bt1 = (Button) findViewById(R.id.button1);Button bt2 = (Button) findViewById(R.id.button2);bt1.setOnClickListener(listener);bt2.setOnClickListener(listener2);}private OnClickListener listener=new OnClickListener(){public void onClick(View arg0) {// TODO Auto-generated method stubIntent intent=new Intent();intent.setClass(MainActivity.this, LoginActivity.class);startActivity(intent);}};private OnClickListener listener2=new OnClickListener(){public void onClick(View arg0) {// TODO Auto-generated method stubIntent intent=new Intent();intent.setClass(MainActivity.this, RegisterActivity.class);startActivity(intent);}};
}
Main.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:background="@drawable/wbz"tools:context=".MainActivity" ><TextViewandroid:id="@+id/textView1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="欢迎进入微博主页"android:textSize="30sp" android:layout_marginLeft="40dp"/><ImageViewandroid:id="@+id/img"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_alignParentLeft="true"android:layout_alignParentTop="true"android:src="@drawable/weibo" /><EditTextandroid:id="@+id/editText1"android:singleLine="true"android:layout_width="280dp"android:layout_height="wrap_content"android:layout_below="@+id/textView1"android:layout_marginLeft="25dp"android:layout_marginTop="153dp"android:hint="请输入账号" /><EditTextandroid:id="@+id/editText2"android:singleLine="true"android:layout_width="280dp" android:layout_height="wrap_content"android:layout_below="@+id/editText1"android:layout_marginLeft="25dp"android:text="请输入密码"android:inputType="textPassword" /><Buttonandroid:id="@+id/button1"android:layout_width="120dp"android:layout_height="wrap_content"android:layout_below="@+id/editText2"android:layout_marginLeft="20dp"android:layout_marginTop="30dp"android:text="申请账号" /><Buttonandroid:id="@+id/button2"android:layout_width="120dp"android:layout_height="wrap_content"android:layout_alignBottom="@+id/button1"android:layout_marginLeft="180dp"android:text="登录" />
</RelativeLayout>

注册:

LoginActivity
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;public class LoginActivity  extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.login);Button bt = (Button) findViewById(R.id.btLogin);bt.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View arg0) {// TODO Auto-generated method stubIntent intent = new Intent();intent.setClass(LoginActivity.this, MainActivity.class);startActivity(intent);}});}
}
Login.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:orientation="vertical" ><TextViewandroid:layout_width="match_parent"android:layout_height="wrap_content"android:text="注册信息"android:textSize="30sp"android:layout_marginLeft="80dp" /><LinearLayoutandroid:orientation="horizontal"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_weight="1"><TextView android:id="@+id/tv1"android:layout_width="50dp"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:text="昵称"android:textSize="20sp"/><EditText android:id="@+id/etname"android:singleLine="true"android:layout_width="250dp"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:hint="请输入昵称"/></LinearLayout><LinearLayout android:orientation="horizontal"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_weight="1"><TextView android:id="@+id/tv2"android:layout_width="50dp"android:layout_height="wrap_content"android:layout_marginTop="15dp"android:text="性别"android:textSize="20sp" /><RadioGroupandroid:id="@+id/rgsex"android:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="horizontal" ><RadioButton android:id="@+id/rbman"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="男"></RadioButton><RadioButton android:id="@+id/rbwoman"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="女"></RadioButton></RadioGroup></LinearLayout><LinearLayoutandroid:orientation="horizontal"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_weight="1" ><TextView android:id="@+id/tv3"android:layout_width="50dp"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:text="账号"android:textSize="20sp" /><EditText android:id="@+id/etuser"android:singleLine="true"android:layout_width="250dp"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:hint="请输入账号”/></LinearLayout><LinearLayoutandroid:orientation="horizontal"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_weight="1" ><TextView android:id="@+id/tv4"android:layout_width="50dp"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:text="密码"android:textSize="20sp"/><EditText android:id="@+id/etpsd"android:singleLine="true"android:layout_width="250dp"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:hint="请输入密码"android:inputType="textPassword"/></LinearLayout><LinearLayoutandroid:orientation="horizontal"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_weight="1"><TextView android:id="@+id/tv5"android:layout_width="50dp"android:layout_height="wrap_content"android:layout_marginTop="16dp"android:text="再次输入密码"android:textSize="15sp"/><EditTextandroid:id="@+id/etpsd2"android:singleLine="true"android:layout_width="250dp"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:hint="请再次输入"android:inputType="textPassword"/></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:layout_weight="1"android:orientation="horizontal" ><Buttonandroid:id="@+id/btLogin"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_marginLeft="100dp"android:text="登录" /></LinearLayout>
</LinearLayout>

已发布:

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class RegisterActivity extends Activity implements OnClickListener{ protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.register);Button bt1 = (Button) findViewById(R.id.btn1);Button bt2 = (Button) findViewById(R.id.btn2);bt1.setOnClickListener(this);bt2.setOnClickListener(this);}public void onClick(View v) {// TODO Auto-generated method stubswitch(v.getId()){case R.id.btn1:Intent intent = new Intent();intent.setClass(RegisterActivity.this,NewActivity.class);startActivity(intent);break;case R.id.btn2:Intent intent2 = new Intent();intent2.setClass(RegisterActivity.this, MainActivity.class);startActivity(intent2);break;}}
}
Register.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:orientation="vertical"android:background="@drawable/j"><LinearLayoutandroid:orientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"android:layout_weight="1"> <TextViewandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="我的微博主页"android:textSize="30sp"android:layout_marginLeft="80dp" /></LinearLayout><LinearLayout android:orientation="horizontal"android:layout_width="fill_parent"android:layout_height="match_parent"android:layout_weight="1"><TextView android:layout_width="fill_parent"android:layout_height="match_parent"android:layout_marginTop="20dp"android:text="2014/03/02 08:08                                                   今天第一天开通微博"android:textColor="#FF0000"android:textSize="20sp" /></LinearLayout><LinearLayout android:orientation="horizontal"android:layout_width="fill_parent"android:layout_height="match_parent"android:layout_weight="1"><TextView android:layout_width="fill_parent"android:layout_height="match_parent"android:layout_marginTop="20dp"android:text="2014/03/12 22:22                             今天是我的生日,过的非常开心!"android:textColor="#FF0000"android:textSize="20sp" /></LinearLayout><LinearLayout android:orientation="horizontal"android:layout_width="fill_parent"android:layout_height="match_parent"android:layout_weight="1"><Button android:id="@+id/btn1"android:layout_width="fill_parent"android:layout_height="match_parent"android:layout_weight="1"android:layout_marginTop="20dp"android:text="发布新微博"android:textSize="20sp"/><Button android:id="@+id/btn2"android:layout_width="fill_parent"android:layout_height="match_parent"android:layout_weight="1"android:layout_marginTop="20dp"android:text="返回"android:textSize="20sp"/></LinearLayout>
</LinearLayout>

发布新微博

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class NewActivity  extends Activity  {EditText et;TextView tv;Button bt;final int MAX = 300;int rest = MAX;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.newsendb);bt = (Button) findViewById(R.id.submit);et = (EditText) findViewById(R.id.etsend);tv = (TextView) findViewById(R.id.tvleave);tv.setText("最多能输入"+rest+"个字符");bt.setOnClickListener(new OnClickListener() {public void onClick(View arg0) {// TODO Auto-generated method stubIntent intent = new Intent();intent.setClass(NewActivity.this, MainActivity.class);startActivity(intent);}});et.addTextChangedListener(new TextWatcher() {@Overridepublic void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {rest = MAX - et.getText().length();}public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,int arg3) {}public void afterTextChanged(Editable arg0) {if(rest > 0)tv.setText("还可以输入"+rest+"个字符");elsetv.setText("已经超过"+-rest+"个字符");}});}
newsendb.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:orientation="vertical"android:background="@drawable/wbz">
<TextView android:id="@+id/tvxx"android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="请你发布新微博,内容要健康,不得有反共倾向。不得有言语攻击行为,一经查实,后果自负! "android:textColor="#FF0000"android:singleLine="true"android:focusable="true"android:ellipsize="marquee"android:focusableInTouchMode="true"android:marqueeRepeatLimit="marquee_forever" /><EditText android:id="@+id/etsend"android:layout_width="fill_parent"android:layout_height="230dp"android:hint="请输入要发布的内容"/>
<TextView android:id="@+id/tvleave"android:layout_width="fill_parent"android:layout_height="wrap_content" /> <Button android:id="@+id/submit"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="提交” />
</LinearLayout


 

 

 

 

 

 


 


这篇关于Android端的微博项目的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

springboot项目中整合高德地图的实践

《springboot项目中整合高德地图的实践》:本文主要介绍springboot项目中整合高德地图的实践,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一:高德开放平台的使用二:创建数据库(我是用的是mysql)三:Springboot所需的依赖(根据你的需求再

一文详解如何在idea中快速搭建一个Spring Boot项目

《一文详解如何在idea中快速搭建一个SpringBoot项目》IntelliJIDEA作为Java开发者的‌首选IDE‌,深度集成SpringBoot支持,可一键生成项目骨架、智能配置依赖,这篇文... 目录前言1、创建项目名称2、勾选需要的依赖3、在setting中检查maven4、编写数据源5、开启热

SpringBoot项目配置logback-spring.xml屏蔽特定路径的日志

《SpringBoot项目配置logback-spring.xml屏蔽特定路径的日志》在SpringBoot项目中,使用logback-spring.xml配置屏蔽特定路径的日志有两种常用方式,文中的... 目录方案一:基础配置(直接关闭目标路径日志)方案二:结合 Spring Profile 按环境屏蔽关

MySQL版本问题导致项目无法启动问题的解决方案

《MySQL版本问题导致项目无法启动问题的解决方案》本文记录了一次因MySQL版本不一致导致项目启动失败的经历,详细解析了连接错误的原因,并提供了两种解决方案:调整连接字符串禁用SSL或统一MySQL... 目录本地项目启动报错报错原因:解决方案第一个:第二种:容器启动mysql的坑两种修改时区的方法:本地

springboot项目中使用JOSN解析库的方法

《springboot项目中使用JOSN解析库的方法》JSON,全程是JavaScriptObjectNotation,是一种轻量级的数据交换格式,本文给大家介绍springboot项目中使用JOSN... 目录一、jsON解析简介二、Spring Boot项目中使用JSON解析1、pom.XML文件引入依

Android学习总结之Java和kotlin区别超详细分析

《Android学习总结之Java和kotlin区别超详细分析》Java和Kotlin都是用于Android开发的编程语言,它们各自具有独特的特点和优势,:本文主要介绍Android学习总结之Ja... 目录一、空安全机制真题 1:Kotlin 如何解决 Java 的 NullPointerExceptio

使用vscode搭建pywebview集成vue项目实践

《使用vscode搭建pywebview集成vue项目实践》:本文主要介绍使用vscode搭建pywebview集成vue项目实践,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录环境准备项目源码下载项目说明调试与生成可执行文件核心代码说明总结本节我们使用pythonpywebv

Maven项目中集成数据库文档生成工具的操作步骤

《Maven项目中集成数据库文档生成工具的操作步骤》在Maven项目中,可以通过集成数据库文档生成工具来自动生成数据库文档,本文为大家整理了使用screw-maven-plugin(推荐)的完... 目录1. 添加插件配置到 pom.XML2. 配置数据库信息3. 执行生成命令4. 高级配置选项5. 注意事

eclipse如何运行springboot项目

《eclipse如何运行springboot项目》:本文主要介绍eclipse如何运行springboot项目问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目js录当在eclipse启动spring boot项目时出现问题解决办法1.通过cmd命令行2.在ecl

SpringBoot项目Web拦截器使用的多种方式

《SpringBoot项目Web拦截器使用的多种方式》在SpringBoot应用中,Web拦截器(Interceptor)是一种用于在请求处理的不同阶段执行自定义逻辑的机制,下面给大家介绍Sprin... 目录一、实现 HandlerInterceptor 接口1、创建HandlerInterceptor实