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

相关文章

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

如何用Docker运行Django项目

本章教程,介绍如何用Docker创建一个Django,并运行能够访问。 一、拉取镜像 这里我们使用python3.11版本的docker镜像 docker pull python:3.11 二、运行容器 这里我们将容器内部的8080端口,映射到宿主机的80端口上。 docker run -itd --name python311 -p

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定

Vue3项目开发——新闻发布管理系统(六)

文章目录 八、首页设计开发1、页面设计2、登录访问拦截实现3、用户基本信息显示①封装用户基本信息获取接口②用户基本信息存储③用户基本信息调用④用户基本信息动态渲染 4、退出功能实现①注册点击事件②添加退出功能③数据清理 5、代码下载 八、首页设计开发 登录成功后,系统就进入了首页。接下来,也就进行首页的开发了。 1、页面设计 系统页面主要分为三部分,左侧为系统的菜单栏,右侧

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

SpringBoot项目是如何启动

启动步骤 概念 运行main方法,初始化SpringApplication 从spring.factories读取listener ApplicationContentInitializer运行run方法读取环境变量,配置信息创建SpringApplication上下文预初始化上下文,将启动类作为配置类进行读取调用 refresh 加载 IOC容器,加载所有的自动配置类,创建容器在这个过程

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

Maven创建项目中的groupId, artifactId, 和 version的意思

文章目录 groupIdartifactIdversionname groupId 定义:groupId 是 Maven 项目坐标的第一个部分,它通常表示项目的组织或公司的域名反转写法。例如,如果你为公司 example.com 开发软件,groupId 可能是 com.example。作用:groupId 被用来组织和分组相关的 Maven artifacts,这样可以避免