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

相关文章

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

一文教你如何将maven项目转成web项目

《一文教你如何将maven项目转成web项目》在软件开发过程中,有时我们需要将一个普通的Maven项目转换为Web项目,以便能够部署到Web容器中运行,本文将详细介绍如何通过简单的步骤完成这一转换过程... 目录准备工作步骤一:修改​​pom.XML​​1.1 添加​​packaging​​标签1.2 添加

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda

springboot集成Deepseek4j的项目实践

《springboot集成Deepseek4j的项目实践》本文主要介绍了springboot集成Deepseek4j的项目实践,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录Deepseek4j快速开始Maven 依js赖基础配置基础使用示例1. 流式返回示例2. 进阶

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

SpringBoot项目启动报错"找不到或无法加载主类"的解决方法

《SpringBoot项目启动报错找不到或无法加载主类的解决方法》在使用IntelliJIDEA开发基于SpringBoot框架的Java程序时,可能会出现找不到或无法加载主类com.example.... 目录一、问题描述二、排查过程三、解决方案一、问题描述在使用 IntelliJ IDEA 开发基于

SpringBoot项目使用MDC给日志增加唯一标识的实现步骤

《SpringBoot项目使用MDC给日志增加唯一标识的实现步骤》本文介绍了如何在SpringBoot项目中使用MDC(MappedDiagnosticContext)为日志增加唯一标识,以便于日... 目录【Java】SpringBoot项目使用MDC给日志增加唯一标识,方便日志追踪1.日志效果2.实现步

Android App安装列表获取方法(实践方案)

《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

Ubuntu中Nginx虚拟主机设置的项目实践

《Ubuntu中Nginx虚拟主机设置的项目实践》通过配置虚拟主机,可以在同一台服务器上运行多个独立的网站,本文主要介绍了Ubuntu中Nginx虚拟主机设置的项目实践,具有一定的参考价值,感兴趣的可... 目录简介安装 Nginx创建虚拟主机1. 创建网站目录2. 创建默认索引文件3. 配置 Nginx4