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


下面三幅圖是轉(zhuǎn)播,對話以及點(diǎn)評(píng)界面



- 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(); //設(shè)置view ??
- ????????setUpListeners(); //設(shè)置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(); //開啟一個(gè)線程獲取數(shù)據(jù) ??
- ????} ??
- ???? ??
- ???? 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); //跳轉(zhuǎn)到用戶信息界面 ??
- ???????????????? ??
- ????????????} ??
- ????????}); ??
- ????????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); //跳轉(zhuǎn)到用戶信息界面 ??
- ????????????} ??
- ????????}); ??
- ????????show_image.setOnClickListener( new ?OnClickListener()?{ ??
- ???????????? @Override ??
- ???????????? public ? void ?onClick(View?arg0)?{ ??
- ???????????????? //跳到大圖瀏覽界面. ??
- ????????????} ??
- ????????}); ??
- ???????? ??
- ????????show_count_mcount.setOnClickListener( new ?OnClickListener()?{ ??
- ???????????? @Override ??
- ???????????? public ? void ?onClick(View?arg0)?{ ??
- ???????????????? //此微博的轉(zhuǎn)播和點(diǎn)評(píng) ??
- ????????????????Toast.makeText(WeiboDetailActivity. this ,? "將顯示此微博的轉(zhuǎn)播和點(diǎn)評(píng)列表" ,?Toast.LENGTH_SHORT).show(); ??
- ????????????} ??
- ????????}); ??
- ???????? ??
- ????????show_rebroad_btn.setOnClickListener( new ?OnClickListener()?{ ??
- ???????????? @Override ??
- ???????????? public ? void ?onClick(View?arg0)?{ //轉(zhuǎn)播此條微博 ??
- ????????????????Intent?intent?=? new ?Intent(WeiboDetailActivity. this ,AddWeiboActivity. class ); ??
- ???????????????? try ?{ ??
- ???????????????????? if (source!= null ){ ??
- ????????????????????????intent.putExtra( "tip" ,? "轉(zhuǎn)播?" +source.getString( "nick" )); ??
- ????????????????????} else { ??
- ????????????????????????intent.putExtra( "tip" ,? "轉(zhuǎn)播?" +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)?{ //點(diǎn)評(píng)此條微博 ??
- ????????????????Intent?intent?=? new ?Intent(WeiboDetailActivity. this ,AddWeiboActivity. class ); ??
- ???????????????? try ?{ ??
- ???????????????????? if (source!= null ){ ??
- ????????????????????????intent.putExtra( "tip" ,? "點(diǎn)評(píng)?" +source.getString( "nick" )); ??
- ????????????????????} else { ??
- ????????????????????????intent.putExtra( "tip" ,? "點(diǎn)評(píng)?" +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?=? "轉(zhuǎn)播和點(diǎn)評(píng)(" +(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" ); //如果此微博有圖片內(nèi)容,就顯示出來 ??
- ???????????????? if (imageArray!= null &&imageArray.length()> 0 ){ ??
- ????????????????????String?imageUrl?=?imageArray.optString( 0 )+ "/460" ; //為什么加/460,騰訊規(guī)定的,支持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(); ??
- ????????????} ??
- ????????} ??
- ????} ??
- }??
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();//設(shè)置view setUpListeners();//設(shè)置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();//開啟一個(gè)線程獲取數(shù)據(jù) } 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);//跳轉(zhuǎn)到用戶信息界面 } }); 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);//跳轉(zhuǎn)到用戶信息界面 } }); show_image.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { //跳到大圖瀏覽界面. } }); show_count_mcount.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { //此微博的轉(zhuǎn)播和點(diǎn)評(píng) Toast.makeText(WeiboDetailActivity.this, "將顯示此微博的轉(zhuǎn)播和點(diǎn)評(píng)列表", Toast.LENGTH_SHORT).show(); } }); show_rebroad_btn.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) {//轉(zhuǎn)播此條微博 Intent intent = new Intent(WeiboDetailActivity.this,AddWeiboActivity.class); try { if(source!=null){ intent.putExtra("tip", "轉(zhuǎn)播 "+source.getString("nick")); }else{ intent.putExtra("tip", "轉(zhuǎn)播 "+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) {//點(diǎn)評(píng)此條微博 Intent intent = new Intent(WeiboDetailActivity.this,AddWeiboActivity.class); try { if(source!=null){ intent.putExtra("tip", "點(diǎn)評(píng) "+source.getString("nick")); }else{ intent.putExtra("tip", "點(diǎn)評(píng) "+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 = "轉(zhuǎn)播和點(diǎn)評(píng)("+(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");//如果此微博有圖片內(nèi)容,就顯示出來 if(imageArray!=null&&imageArray.length()>0){ String imageUrl = imageArray.optString(0)+"/460";//為什么加/460,騰訊規(guī)定的,支持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"?> <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= "轉(zhuǎn)播" ?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= "點(diǎn)評(píng)" ?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>??
- http://helloandroid.iteye.com/blog/1136741
(轉(zhuǎn)摘)Android騰訊微薄客戶端開發(fā)八:微博查看(轉(zhuǎn)播,對話,點(diǎn)評(píng))
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號(hào)聯(lián)系: 360901061
您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
