`
helloandroid
  • 浏览: 275758 次
  • 性别: Icon_minigender_1
  • 来自: 成都
博客专栏
107f8db3-b009-3b79-938a-dafddb49ea79
Android腾讯微博客户...
浏览量:95702
社区版块
存档分类
最新评论

Android腾讯微薄客户端开发八:微博查看(转播,对话,点评)

阅读更多

如果是自己的微博,可以干掉它



下面三幅图是转播,对话以及点评界面







public class WeiboDetailActivity extends Activity {
	private DataHelper dataHelper;
	private UserInfo user;
	private MyWeiboSync weibo;
	private Handler handler;
	private AsyncImageLoader asyncImageLoader; 
	private GetDetailThread thread;
	private String weiboid;
	private String returnJsonStr;
	private JSONObject dataObj ;
	private ImageView show_headicon;
	private ImageView show_image;
	private TextView show_count_mcount;
	private ImageView show_delete;
	private TextView show_nick;
	private TextView show_email;
	private TextView show_origtext;
	private TextView show_time;
	private TextView show_from;
	private Button to_userinfo_btn;
	private Button show_star_btn;
	private Button show_back_btn;
	private TextView show_rebroad_btn;
	private TextView show_dialog_btn;
	private TextView show_remark_btn;
	private Button show_tohome_btn;
	private RelativeLayout show_top;
	private View weibodetail_bottom3_bar;
	private JSONObject source = null;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.weibo_detail);
		setUpViews();//设置view
		setUpListeners();//设置listenter
		asyncImageLoader = new AsyncImageLoader();
		
		Intent intent = getIntent();
		weiboid = intent.getStringExtra("weiboid");
		dataHelper = new DataHelper(WeiboDetailActivity.this);
		weibo = new MyWeiboSync();
		
		List<UserInfo> userList = dataHelper.GetUserList(false);
		
		SharedPreferences preferences = getSharedPreferences("default_user",Activity.MODE_PRIVATE);
		String nick = preferences.getString("user_default_nick", "");
		
		if (nick != "") {
			user = dataHelper.getUserByName(nick,userList);
		}
		
		weibo.setAccessTokenKey(user.getToken());
		weibo.setAccessTokenSecrect(user.getTokenSecret());
		
		handler = new DealHandler();
		thread = new GetDetailThread();
		thread.start();//开启一个线程获取数据
	}
	
	private void setUpViews(){
		show_headicon = (ImageView) findViewById(R.id.show_headicon);
		show_delete = (ImageView) findViewById(R.id.show_delete);
		show_nick = (TextView) findViewById(R.id.show_nick);
		show_email = (TextView) findViewById(R.id.show_email);
		show_origtext = (TextView) findViewById(R.id.show_origtext);
		show_image = (ImageView) findViewById(R.id.show_image);
		show_count_mcount = (TextView)findViewById(R.id.show_count_mcount);
		show_time = (TextView) findViewById(R.id.show_time);
		show_from = (TextView) findViewById(R.id.show_from);
		to_userinfo_btn = (Button) findViewById(R.id.to_userinfo_btn);
		show_star_btn = (Button) findViewById(R.id.show_star_btn);
		show_back_btn = (Button) findViewById(R.id.show_back_btn);
		weibodetail_bottom3_bar = (View)findViewById(R.id.weibo_detail_bottom_bar);
		show_rebroad_btn = (TextView)weibodetail_bottom3_bar.findViewById(R.id.show_rebroad_btn);
		show_dialog_btn = (TextView)weibodetail_bottom3_bar.findViewById(R.id.show_dialog_btn);
		show_remark_btn = (TextView)weibodetail_bottom3_bar.findViewById(R.id.show_remark_btn);
		show_tohome_btn = (Button) findViewById(R.id.show_tohome_btn);
		show_top = (RelativeLayout)findViewById(R.id.show_top);
	}
	
	private void setUpListeners(){
		show_top.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				Intent intent = new Intent(WeiboDetailActivity.this,UserInfoActivity.class);
				try {
					intent.putExtra("name", dataObj.getString("name"));
					intent.putExtra("nick", dataObj.getString("nick"));
					intent.putExtra("origtext", dataObj.getString("origtext"));
					intent.putExtra("timestamp", TimeUtil.getStandardTime(dataObj.getLong("timestamp")));
				} catch (JSONException e) {
					e.printStackTrace();
				}
				startActivity(intent);//跳转到用户信息界面
				
			}
		});
		to_userinfo_btn.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				Intent intent = new Intent(WeiboDetailActivity.this,UserInfoActivity.class);
				try {
					intent.putExtra("name", dataObj.getString("name"));
					intent.putExtra("nick", dataObj.getString("nick"));
					intent.putExtra("origtext", dataObj.getString("origtext"));
					intent.putExtra("timestamp", TimeUtil.getStandardTime(dataObj.getLong("timestamp")));
				} catch (JSONException e) {
					e.printStackTrace();
				}
				startActivity(intent);//跳转到用户信息界面
			}
		});
		show_image.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View arg0) {
				//跳到大图浏览界面.
			}
		});
		
		show_count_mcount.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View arg0) {
				//此微博的转播和点评
				Toast.makeText(WeiboDetailActivity.this, "将显示此微博的转播和点评列表", Toast.LENGTH_SHORT).show();
			}
		});
		
		show_rebroad_btn.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View arg0) {//转播此条微博
				Intent intent = new Intent(WeiboDetailActivity.this,AddWeiboActivity.class);
				try {
					if(source!=null){
						intent.putExtra("tip", "转播 "+source.getString("nick"));
					}else{
						intent.putExtra("tip", "转播 "+dataObj.getString("nick"));
					}
					if(dataObj.getString("origtext")!=null&&!"".equals(dataObj.getString("origtext"))){
						intent.putExtra("content", "|| @"+dataObj.getString("nick")+": "+dataObj.getString("origtext"));
						intent.putExtra("reid", dataObj.getString("id"));
					}else{
						intent.putExtra("content", "|| @"+source.getString("nick")+": ");
						intent.putExtra("reid", source.getString("id"));
					}
					intent.putExtra("from_flag", "rebroad");
				} catch (JSONException e) {
					e.printStackTrace();
				}
				startActivity(intent);
			}
		});
		
		show_dialog_btn.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View arg0) {//对话此条微博所有者
				Intent intent = new Intent(WeiboDetailActivity.this,AddWeiboActivity.class);
				try {
					intent.putExtra("tip", "对话 "+dataObj.getString("nick"));
					intent.putExtra("to",dataObj.getString("name"));//对话人的name
					intent.putExtra("from_flag", "private");
					intent.putExtra("content", "");
				} catch (JSONException e) {
					e.printStackTrace();
				}
				startActivity(intent);
			}
		});
		
		show_remark_btn.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View arg0) {//点评此条微博
				Intent intent = new Intent(WeiboDetailActivity.this,AddWeiboActivity.class);
				try {
					if(source!=null){
						intent.putExtra("tip", "点评 "+source.getString("nick"));
					}else{
						intent.putExtra("tip", "点评 "+dataObj.getString("nick"));
					}
					if(dataObj.getString("origtext")!=null&&!"".equals(dataObj.getString("origtext"))){
						intent.putExtra("content", "|| @"+dataObj.getString("nick")+": "+dataObj.getString("origtext"));
						intent.putExtra("reid", dataObj.getString("id"));
					}else{
						intent.putExtra("content", "|| @"+source.getString("nick")+": ");
						intent.putExtra("reid", source.getString("id"));
					}
					intent.putExtra("from_flag", "comment");
				} catch (JSONException e) {
					e.printStackTrace();
				}
				startActivity(intent);
			}
		});
		
	}
	
	class GetDetailThread extends Thread {
		@Override
		public void run() {
			returnJsonStr = weibo.getWeiboDetail(weibo.getAccessTokenKey(), weibo.getAccessTokenSecrect(), weiboid);
			Message msg = handler.obtainMessage();
			handler.sendMessage(msg);
		}
	}
	
	class DealHandler extends Handler { 
		@Override
		public void handleMessage(Message msg){
			Drawable cachedImage;
			try {
				dataObj = new JSONObject(returnJsonStr).getJSONObject("data");
				
				cachedImage = asyncImageLoader.loadDrawable(dataObj.getString("head")+"/100",show_headicon, new ImageCallback(){
	                @Override
	                public void imageLoaded(Drawable imageDrawable,ImageView imageView, String imageUrl) {
	                    imageView.setImageDrawable(imageDrawable);
	                }
	            });
				if (cachedImage == null) {
					show_headicon.setImageResource(R.drawable.icon);
				} else {
					show_headicon.setImageDrawable(cachedImage);
				}
				
				String count_mcount_text = "转播和点评("+(dataObj.getInt("count")+dataObj.getInt("mcount"))+")";//加下划线
				SpannableStringBuilder underlineSpannable=new SpannableStringBuilder(count_mcount_text);
				CharacterStyle span=new UnderlineSpan();  
				underlineSpannable.setSpan(span, 0, count_mcount_text.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
				show_count_mcount.setText(underlineSpannable);
				
				
				show_nick.setText(dataObj.getString("nick"));
				show_email.setText("@"+dataObj.getString("name"));
				show_origtext.setText(dataObj.getString("origtext"));
				show_time.setText(TimeUtil.getStandardTime(dataObj.getLong("timestamp")));
				show_from.setText("来自"+dataObj.getString("from"));
				if(dataObj.getString("nick").equals(user.getUserName())){
					show_delete.setVisibility(View.VISIBLE);
				}
				
				JSONArray imageArray = dataObj.optJSONArray("image");//如果此微博有图片内容,就显示出来
				if(imageArray!=null&&imageArray.length()>0){
					String imageUrl = imageArray.optString(0)+"/460";//为什么加/460,腾讯规定的,支持160,2000,460还有一些,记不住了
					Drawable drawable = asyncImageLoader.loadDrawable(imageUrl,show_image, new ImageCallback(){
		                @Override
		                public void imageLoaded(Drawable imageDrawable,ImageView imageView, String imageUrl) {
		                    imageView.setImageDrawable(imageDrawable);
		                }
		            });
					show_image.setVisibility(View.VISIBLE);
				}
				
				if(!"null".equals(dataObj.getString("source"))){
					source = dataObj.getJSONObject("source");
				}
				
			} catch (JSONException e) {
				e.printStackTrace();
			}
		}
	}
}


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/widget28"
	android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ffffffff"
	xmlns:android="http://schemas.android.com/apk/res/android">
	<RelativeLayout android:id="@+id/show_top" android:paddingTop="5.0dip" android:layout_width="fill_parent" android:layout_height="60.0dip" android:background="#c7cbd6" android:layout_alignParentTop="true" android:layout_centerHorizontal="true">
		<ImageView android:id="@+id/show_headicon" android:layout_marginLeft="8.0dip" android:layout_width="45.0dip" android:layout_height="45.0dip" android:layout_alignParentLeft="true"/>
		<TextView android:id="@+id/show_nick" android:layout_marginLeft="5.0dip" android:layout_width="wrap_content" android:layout_toRightOf="@id/show_headicon" android:textColor="#384050"
			android:layout_height="wrap_content"/>
		<TextView android:id="@+id/show_email" android:layout_width="wrap_content" android:layout_marginLeft="10.0dip" android:layout_toRightOf="@id/show_headicon" android:textColor="#687888"
			android:layout_height="wrap_content" android:layout_below="@id/show_nick"/>
		<Button android:id="@+id/to_userinfo_btn" android:layout_width="wrap_content" android:background="@drawable/arrow_more_info_selector"
			android:layout_height="wrap_content" android:layout_alignParentRight="true"/>
	</RelativeLayout>
	<RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/show_top" android:paddingTop="5.0dip">
		<TextView android:id="@+id/show_origtext" android:layout_width="fill_parent" android:layout_marginLeft="5.0dip" android:textSize="16.0sp" android:textColor="#707878"
			android:layout_height="wrap_content"/>
		<ImageView android:id="@+id/show_image" android:visibility="gone" android:layout_centerInParent="true" android:layout_below="@id/show_origtext" android:layout_width="fill_parent" android:layout_height="120.0dip"/>
		<TextView android:id="@+id/show_count_mcount" android:layout_below="@id/show_image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="18.0sp" android:textColor="#1d5884"/>
		<TextView android:id="@+id/show_time" android:layout_width="wrap_content" android:layout_marginLeft="5.0dip" android:layout_marginTop="10.0dip" android:textSize="12.0sp"
			android:layout_height="wrap_content" android:layout_below="@id/show_count_mcount"/>
		<TextView android:id="@+id/show_from" android:layout_width="wrap_content" android:layout_marginLeft="3.0dip" android:layout_marginTop="10.0dip" android:textSize="12.0sp"
			android:layout_height="wrap_content" android:layout_below="@id/show_count_mcount" android:layout_toRightOf="@id/show_time"/>
		<Button android:id="@+id/show_star_btn" android:layout_width="wrap_content" android:layout_marginRight="5.0dip" android:layout_marginTop="10.0dip"
			android:layout_height="wrap_content" android:background="@drawable/btn_fav" android:layout_below="@id/show_count_mcount" android:layout_alignParentRight="true"/>
		<ImageView android:id="@+id/show_delete" android:src="@drawable/delete" android:layout_width="wrap_content" android:layout_marginRight="3.0dip" android:layout_marginTop="10.0dip" android:visibility="invisible" android:layout_height="wrap_content" android:layout_below="@id/show_count_mcount" android:layout_toLeftOf="@id/show_star_btn"/>
	</RelativeLayout>
	<RelativeLayout android:layout_width="fill_parent" android:layout_height="40.0dip" android:layout_alignParentBottom="true">
		<Button android:id="@+id/show_back_btn" android:layout_width="40.0dip" android:drawableTop="@drawable/btn_back_selector" android:background="@drawable/bottom_back_bg"
			android:layout_height="40.0dip"  android:layout_alignParentLeft="true"/>
		<LinearLayout  android:layout_width="wrap_content" android:layout_height="wrap_content"	android:layout_marginLeft="70.0dip">
			<include android:id="@+id/weibo_detail_bottom_bar" layout="@layout/weibodetail_bottombar_3"/>
		</LinearLayout>
		<Button android:id="@+id/show_tohome_btn" android:layout_width="40.0dip"
			android:layout_height="40.0dip" android:drawableTop="@drawable/btn_home_selector" android:background="@drawable/bottom_home_bg" android:layout_alignParentRight="true"/>
	</RelativeLayout>
</RelativeLayout>


<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout android:orientation="horizontal" android:id="@id/bottom_bar" android:layout_width="fill_parent" android:layout_height="fill_parent"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <TextView android:textSize="16.0dip" android:text="转播" android:textColor="@color/bottom_button_text_selector" android:gravity="center" android:id="@+id/show_rebroad_btn" android:background="@drawable/bottom_3btn_l_selector" android:focusable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" />
    <TextView android:textSize="16.0dip" android:text="对话" android:textColor="@color/bottom_button_text_selector" android:gravity="center" android:id="@+id/show_dialog_btn" android:background="@drawable/bottom_3btn_m_selector" android:focusable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" />
    <TextView android:textSize="16.0dip" android:text="点评" android:textColor="@color/bottom_button_text_selector" android:gravity="center" android:id="@+id/show_remark_btn" android:background="@drawable/bottom_3btn_r_selector" android:focusable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
  • 大小: 57.9 KB
  • 大小: 67.2 KB
  • 大小: 42 KB
  • 大小: 53.1 KB
  • 大小: 25.1 KB
  • 大小: 52.7 KB
分享到:
评论

相关推荐

    Android腾讯微博客户端开发

    Android腾讯微博客户端开发

    Android 腾讯微博客户端源码

    本篇文章将基于“Android腾讯微博客户端源码”这一主题,深入探讨其中的关键技术和设计理念,帮助开发者们提升对Android应用开发的理解。 一、架构设计 腾讯微博客户端源码采用MVC(Model-View-Controller)架构...

    腾讯微博客户端源码

    【腾讯微博客户端源码】是一个面向Android平台的应用程序开发项目,它提供了全面的功能,与腾讯微博服务进行交互。源码的可用性使得开发者能够深入理解微博客户端的内部工作原理,学习如何实现各种社交网络功能,...

    移动应用Android 腾讯微博客户端源码.rar

    本篇文章将基于提供的"移动应用Android 腾讯微博客户端源码"进行深入解析,揭示其背后的设计理念、技术架构以及实现细节,为Android开发人员提供宝贵的参考资料。 首先,我们需要理解Android应用的基本结构。一个...

    android腾讯微博客户端源码

    android腾讯微博客户端源码,功能基本齐全。

    Android 腾讯微博客户端源码1.rar

    【标题】"Android 腾讯微博客户端源码1.rar" 涵盖了Android平台上腾讯微博客户端应用程序的源代码,这是一个深入理解Android应用开发、社交网络集成以及腾讯微博API使用的宝贵资源。在这个源码中,我们可以看到如何...

    android仿腾讯微博客户端

    "Android仿腾讯微博客户端"是一个基于Android平台的项目,其目标是实现与腾讯微博原生客户端类似的功能,包括登录、发布和浏览微博、查看好友动态等。该项目的特点在于提供了完整的源码,开发者只需将jar包添加到...

    Android程序研发源码Android 腾讯微博客户端源码.zip

    本次我们关注的是"Android腾讯微博客户端源码",这是一份可以帮助开发者深入了解腾讯微博客户端实现细节的宝贵资源。通过对这份源码的学习,我们可以了解到如何构建一个功能完备、用户友好的社交应用。 首先,从...

    Android 腾讯微博客户端源码.zip

    【Android 腾讯微博客户端源码】是一个深入学习Android应用开发的重要资源,它揭示了腾讯微博客户端在Android平台上的实现细节。这个源码库包含了客户端的所有组件、模块和功能,为开发者提供了一个鲜活的实例,可以...

    Android腾讯微博客户端开发五利用FootView实现ListView滑动动态

    在Android应用开发中,腾讯微博客户端的构建是一个典型的案例,涉及到许多高级技术和设计模式。本篇文章将聚焦于如何利用FootView来实现ListView的滑动动态效果,这在提供用户友好的交互体验上至关重要。 首先,...

    毕业论文安卓827腾讯微博客户端app.doc

    本文档是关于Android 腾讯微博客户端的设计与实现的毕业论文,论文主要介绍了 Android 腾讯微博客户端的开发过程,包括需求分析、系统设计、代码实现和功能测试等方面的内容。 在背景意义部分,论文首先介绍了腾讯...

    android 腾讯微博客户端

    在Android平台上实现腾讯微博客户端是一项涉及多个技术领域的综合性工作。这个源代码项目,"MyQQWeiboForClient3",提供了构建自定义微博应用的详细实现,帮助开发者深入理解Android应用开发,特别是针对社交媒体的...

    [腾讯微博Android客户端开发]课程文档及源代码

    【腾讯微博Android客户端开发】是一门深入探讨如何构建Android平台上腾讯微博应用的课程,涵盖了从基础知识到高级技术的完整开发流程。这门课程旨在帮助开发者理解Android应用开发的基本原理,特别是针对社交媒体...

    Android 腾讯微博客户端源码1.zip

    【Android 腾讯微博客户端源码分析】 在Android平台上,腾讯微博客户端是一款非常流行的社交媒体应用,它允许用户发布和浏览微博,与朋友互动。这个源码提供了宝贵的参考资料,可以帮助开发者深入理解Android应用的...

    Android腾讯微博客户端源码1.zip

    【Android腾讯微博客户端源码1.zip】是一个包含安卓平台上的腾讯微博客户端应用程序的源代码集合。这个源码库为开发者提供了深入理解腾讯微博Android应用设计和实现的宝贵资源。通过研究这个源码,我们可以学习到...

Global site tag (gtag.js) - Google Analytics