Android仿新浪微博个人信息界面及其他效果

Android仿新浪微博个人信息界面及其他效果,第1张

概述本教程为大家分享了Android微博个人信息界面设计代码,供大家参考,具体内容如下

本教程为大家分享了AndroID微博个人信息界面设计代码,供大家参考,具体内容如下

根据用户ID获取用户信息接口:
http://open.weibo.com/wiki/2/users/show

如果你已经实现前面的功能那个这个人信息界面便是小菜一碟,此处不作叙述。

补充

1.时间处理类:

处理微博发出时间距现在时刻的时间。应该是比较容易理解的。

/** * 时间处理类 */public class DateUtils {  public String getInterval(String createtime) { //传入的时间格式必须类似于2012-8-21 17:53:20这样的格式    String interval = null;    SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");    Parseposition pos = new Parseposition(0);    Date d1 = sd.parse(createtime,pos);    //用现在距离1970年的时间间隔new Date().getTime()减去以前的时间距离1970年的时间间隔d1.getTime()得出的就是以前的时间与现在时间的时间间隔    long time = new Date().getTime() - d1.getTime();// 得出的时间间隔是毫秒    int day = 24 * 3600000;    int week = day * 7;    if (time / 1000 < 10 && time / 1000 >= 0) {      //如果时间间隔小于10秒则显示“刚刚”time/10得出的时间间隔的单位是秒      interval = "刚刚";    } else if (time / 3600000 < 24 && time / 3600000 > 0) {      //如果时间间隔小于24小时则显示多少小时前      int h = (int) (time / 3600000);//得出的时间间隔的单位是小时      interval = h + "小时前";    } else if (time / 60000 < 60 && time / 60000 > 0) {      //如果时间间隔小于60分钟则显示多少分钟前      int m = (int) ((time % 3600000) / 60000);//得出的时间间隔的单位是分钟      interval = m + "分钟前";    } else if (time / 1000 < 60 && time / 1000 > 0) {      //如果时间间隔小于60秒则显示多少秒前      int se = (int) ((time % 60000) / 1000);      interval = se + "秒前";    } else if (time / day < 7 && time / day > 0) {      int d = (int) (time / day);      interval = d + "天前";    } else if (time / week < 5 && time / week > 0) {      int w = (int) (time / week);      interval = w + "周前";    } else {      //大于一个月的,则显示正常的时间,但是不显示秒      SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");      Parseposition pos2 = new Parseposition(0);      Date d2 = (Date) sdf.parse(createtime,pos2);      interval = sdf.format(d2);    }    return interval;  }}

2.字符串中表情处理类:

正则表达式匹配相应表情字段,若匹配则使用SpannableString将该字段的文字用表情图片代替。

public class StringUtils {  public static SpannableString getEmotionContent(final Context context,final TextVIEw tv,String source) {    SpannableString spannableString = new SpannableString(source);    Resources res = context.getResources();    String regexEmotion = "\[([\u4e00-\u9fa5\w])+\]";    Pattern patternEmotion = Pattern.compile(regexEmotion);    Matcher matcherEmotion = patternEmotion.matcher(spannableString);    Bitmap scaleBitmap;    int size = (int) tv.getTextSize();    while (matcherEmotion.find()) {      // 获取匹配到的具体字符      String key = matcherEmotion.group();      // 匹配字符串的开始位置      int start = matcherEmotion.start();      // 利用表情名字获取到对应的图片      Integer imgRes = EmotionUtils.getimgByname(key);      if (imgRes != null && size > 0) {        // 压缩表情图片        Bitmap bitmap = BitmapFactory.decodeResource(res,imgRes);        if (bitmap != null) {          scaleBitmap = Bitmap.createScaledBitmap(bitmap,size,true);          ImageSpan span = new ImageSpan(context,scaleBitmap);          spannableString.setSpan(span,start,start + key.length(),Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);        }      }    }    return spannableString;  }}

3.manifest文件:

由于该应用涉及诸多权限,故需要声明权限。此处由于上次多张图片会使内存溢出,故需申请额外内存

<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"     package="study.sinatest"> <!-- 访问网络的权限 -->  <uses-permission androID:name="androID.permission.ACCESS_NETWORK_STATE"/>  <uses-permission androID:name="androID.permission.INTERNET"/>  <!-- 在SDCard中创建与删除文件权限 -->  <uses-permission androID:name="androID.permission.MOUNT_UNMOUNT_fileSYstemS"/>  <!-- 往SDCard写入数据权限 -->  <uses-permission androID:name="androID.permission.WRITE_EXTERNAL_STORAGE"/>  <application  <!-- 此处由于上次多张图片会使内存溢出,故需申请额外内存 -->    androID:largeHeap="true"    androID:allowBackup="true"    androID:harDWareAccelerated="false"    androID:icon="@mipmap/weibologo"    androID:label="@string/app_name"    androID:supportsRtl="true"    androID:theme="@style/Apptheme">    <activity      androID:name=".SplashActivity"      androID:configChanges="keyboardHIDden"      androID:launchMode="singleTask"      androID:screenorIEntation="portrait">      <intent-filter>        <action androID:name="androID.intent.action.MAIN"/>        <category androID:name="androID.intent.category.LAUNCHER"/>      </intent-filter>    </activity>    <activity androID:name=".LoginActivity"/>    <activity androID:name=".MainActivity"/>    <activity androID:name=".HomeActivity"/>    <activity androID:name=".WriteActivity"/>    <activity androID:name=".CommentActivity"/>    <activity androID:name=".MeActivity"/>    <activity androID:name=".MoreActivity"/>    <!-- 授权页面 -->    <activity      androID:name=".OAuthActivity"      androID:launchMode="singleTask">      <intent-filter>        <action androID:name="androID.intent.action.VIEW"/>        <category androID:name="androID.intent.category.DEFAulT"/>        <category androID:name="androID.intent.category.broWSABLE"/>        <data androID:scheme="philn"/>      </intent-filter>    </activity>    <!-- 谷歌服务权限 -->    <Meta-data      androID:name="com.Google.androID.gms.version"      androID:value="@integer/Google_play_services_version"/>  </application>  <supports-screens    androID:anyDensity="true"    androID:largeScreens="true"    androID:normalScreens="true"/></manifest>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的Android仿新浪微博个人信息界面及其他效果全部内容,希望文章能够帮你解决Android仿新浪微博个人信息界面及其他效果所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1147656.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存