• 大小: 1.39KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: Android  c  Activity  分享  

资源简介

android BaseActivity 示例代码分享

资源截图

代码片段和文件信息

/**
 * Activity
 * 
 * @author coder
 * 
 */
public class baseActivity extends Activity {

private View titleView;
private TextView tv_title;
private Button btn_left btn_right;

private LinearLayout ly_content;
// 
private View contentView;

@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);

setContentView(R.layout.common_title);
titleView = findViewById(R.id.titleView);
tv_title = (TextView) titleView.findViewById(R.id.tv_title);
btn_left = (Button) titleView.findViewById(R.id.btn_left);
btn_right = (Button) titleView.findViewById(R.id.btn_right);

ly_content = (LinearLayout) findViewById(R.id.ly_content);
}

/***
 * 
 * 
 * @param resId
 *  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3162  2015-02-05 16:29  baseActivity.java
     文件         430  2015-02-05 16:30  TwoBtnActivity.java

评论

共有 条评论