Android Open Source - ChuangYi My Chuangyi






From Project

Back to project page ChuangYi.

License

The source code is released under:

MIT License

If you think the Android project ChuangYi listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 * //from w  w w  . j a  v  a 2  s  .  c  o  m
 */
package tjuci.dl.myweixin;

import android.app.Activity;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Color;
import android.os.Bundle;
import android.text.Html;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.style.ForegroundColorSpan;
import android.text.style.RelativeSizeSpan;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;

/**
 * @author qiang
 *
 */
public class MyChuangyi extends Activity implements OnClickListener{
  TextView myPraiseNum, myCommentNum, myTocreateNum, myChuangyi1, myChuangyi2, myChuangyiRecord1, lileiName;
  ImageView btnBack, lileiPhoto;
  
  @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.my_chuangyi);
        myPraiseNum = (TextView) findViewById(R.id.my_prasie_num);
        Spannable spanPraise = new SpannableString(myPraiseNum.getText());
        spanPraise.setSpan(new RelativeSizeSpan(1.8f), 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        spanPraise.setSpan(new ForegroundColorSpan(Color.rgb(192, 0, 0)), 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        myPraiseNum.setText(spanPraise);
        myCommentNum = (TextView) findViewById(R.id.my_comment_num);
        Spannable spanComment = new SpannableString(myCommentNum.getText());
        spanComment.setSpan(new RelativeSizeSpan(1.8f), 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        spanComment.setSpan(new ForegroundColorSpan(Color.rgb(192, 0, 0)), 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        myCommentNum.setText(spanComment);
        myTocreateNum = (TextView) findViewById(R.id.my_tocreate_num);
        Spannable spanCreate = new SpannableString(myTocreateNum.getText());
        spanCreate.setSpan(new RelativeSizeSpan(1.8f), 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        spanCreate.setSpan(new ForegroundColorSpan(Color.rgb(192, 0, 0)), 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        myTocreateNum.setText(spanCreate);
        myChuangyi1 = (TextView) findViewById(R.id.my_chuangyi_1);
        String text = "2014.6.14 ?????" + "<font color=#B94C59>&nbsp;????</font>";
        myChuangyi1.setText(Html.fromHtml(text));
        myChuangyi2 = (TextView) findViewById(R.id.my_chuangyi_2);
        text = "2014.6.14 " + "<font color=#B94C59>??????????</font>";
        myChuangyi2.setText(Html.fromHtml(text));
        myChuangyiRecord1 = (TextView) findViewById(R.id.my_chuangyi_record1);
        text = "<font color=#B94C59>????</font>"+"???????????????????????????????????????";
        myChuangyiRecord1.setText(Html.fromHtml(text));
        btnBack = (ImageView) findViewById(R.id.cy_my_back);
        btnBack.setOnClickListener(this);
        lileiName = (TextView) findViewById(R.id.lilei_name);
        lileiName.setOnClickListener(this);
        lileiPhoto = (ImageView) findViewById(R.id.lilei_photo);
        lileiPhoto.setOnClickListener(this);
    }
  
  
  @Override
  public void onClick(View v) {
    int btnId = v.getId();
    switch (btnId) {//?????????
    case R.id.cy_my_back://?????
      this.finish();
      overridePendingTransition(R.anim.left_in, R.anim.right_out);
      break;

    case R.id.lilei_name:
    case R.id.lilei_photo:
      Intent intent = new Intent(this, LileiChuangyi.class);
      startActivity(intent);
      break;
    }
  }

}




Java Source Code List

tjuci.dl.myweixin.CyToday.java
tjuci.dl.myweixin.LileiChuangyi.java
tjuci.dl.myweixin.LoginActivity.java
tjuci.dl.myweixin.LoginIndex.java
tjuci.dl.myweixin.MyChuangyi.java
tjuci.dl.myweixin.MyWeiXinActivity.java
tjuci.dl.myweixin.OthersChuangyi.java