应无所住,而生其心
排名
1
文章
860
粉丝
112
评论
163
net core webapi post传递参数
庸人 : 确实坑哈,我也是下班好了好几次,发现后台传递对象是可以的,但...
百度编辑器自定义模板
庸人 : 我建议换个编辑器,因为现在百度富文本已经停止维护了,用tinymec...
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

android后台动态添加布局文件、控件与动态设置属性

4212人阅读 2014/10/27 17:25 总访问:5193978 评论:0 收藏:0 手机
分类: 移动开发

翻译布局文件
布局文件

  1. <LinearLayout
  2. android:layout_width="fill_parent"
  3. android:background="@drawable/myborder"
  4. android:layout_marginTop="15dp"
  5. android:orientation="vertical"
  6. android:clickable="true"
  7. android:layout_height="wrap_content">
  8. <RelativeLayout
  9. android:layout_width="fill_parent"
  10. android:layout_height="39dp"
  11. android:gravity="center_horizontal">
  12. <ImageView
  13. android:id="@+id/iv_system_left"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_alignParentLeft="true"
  17. android:layout_centerVertical="true"
  18. android:layout_marginLeft="12dp"
  19. android:src="@drawable/set7" />
  20. <TextView
  21. android:id="@+id/tv_system_title"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_toRightOf="@+id/iv_system_left"
  25. android:layout_centerVertical="true"
  26. android:layout_marginLeft="11dp"
  27. android:text="分享"
  28. android:textColor="#000000"/>
  29. <ImageView
  30. android:id="@+id/iv_system_right"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_alignParentRight="true"
  34. android:layout_centerVertical="true"
  35. android:layout_marginRight="12dp"
  36. android:src="@drawable/ios_arrow" />
  37. </RelativeLayout>
  38. <LinearLayout android:layout_width="fill_parent"
  39. android:layout_height="1px"
  40. android:background="#cccccc"
  41. android:layout_marginLeft="46dp"
  42. ></LinearLayout>
  43. </LinearLayout>

后台生成

  1. public LinearLayout CreateSetting(Drawable img,String _text)
  2. {
  3. RelativeLayout rl = new RelativeLayout(getActivity().getApplicationContext());
  4. RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
  5. RelativeLayout.LayoutParams.MATCH_PARENT,Dp2Px(getActivity(),39));
  6. lp.addRule(RelativeLayout.CENTER_HORIZONTAL);
  7. rl.setLayoutParams(lp);
  8. RelativeLayout.LayoutParams lpiv = new RelativeLayout.LayoutParams(
  9. RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
  10. lpiv.addRule(RelativeLayout.CENTER_VERTICAL,RelativeLayout.TRUE);
  11. lpiv.addRule(RelativeLayout.ALIGN_PARENT_LEFT,RelativeLayout.TRUE);
  12. lpiv.setMargins(Dp2Px(getActivity(),12), 0, 0, 0);
  13. //lpiv.addRule(RelativeLayout.RIGHT_OF,iv.getId());
  14. ImageView iv = new ImageView(getActivity().getApplicationContext());
  15. iv.setLayoutParams(lpiv);
  16. iv.setImageDrawable(img);
  17. iv.setId(99);//动态相对布局必须设置id,getid才能取到
  18. RelativeLayout.LayoutParams lp_tv = new RelativeLayout.LayoutParams(
  19. RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
  20. lp_tv.addRule(RelativeLayout.CENTER_VERTICAL,RelativeLayout.TRUE);
  21. lp_tv.setMargins(Dp2Px(getActivity(),11), 0, 0, 0);
  22. lp_tv.addRule(RelativeLayout.RIGHT_OF,iv.getId());
  23. TextView tv = new TextView(getActivity().getApplicationContext());
  24. tv.setLayoutParams(lp_tv);
  25. tv.setText(_text);
  26. tv.setTextColor(Color.parseColor("#000000"));
  27. RelativeLayout.LayoutParams lp_img = new RelativeLayout.LayoutParams(
  28. RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
  29. lp_img.addRule(RelativeLayout.CENTER_VERTICAL,RelativeLayout.TRUE);
  30. lp_img.addRule(RelativeLayout.ALIGN_PARENT_RIGHT,RelativeLayout.TRUE);
  31. lp_img.setMargins(0, 0, Dp2Px(getActivity(),12), 0);
  32. //lpiv.addRule(RelativeLayout.RIGHT_OF,iv.getId());
  33. ImageView ivarrow = new ImageView(getActivity().getApplicationContext());
  34. ivarrow.setLayoutParams(lp_img);
  35. ivarrow.setImageDrawable(this.getResources().getDrawable(R.drawable.ios_arrow));
  36. rl.addView(iv);
  37. rl.addView(tv);
  38. rl.addView(ivarrow);
  39. LinearLayout ll_line = new LinearLayout(getActivity().getApplicationContext());
  40. LinearLayout.LayoutParams lp_line = new LinearLayout.LayoutParams(
  41. RelativeLayout.LayoutParams.MATCH_PARENT,1);
  42. lp_line.setMargins(Dp2Px(getActivity(),46), 0, 0, 0);
  43. ll_line.setLayoutParams(lp_line);
  44. ll_line.setBackgroundColor(Color.parseColor("#cccccc"));
  45. LinearLayout ll_f = new LinearLayout(getActivity().getApplicationContext());
  46. LinearLayout.LayoutParams lp_f = new LinearLayout.LayoutParams(
  47. RelativeLayout.LayoutParams.MATCH_PARENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
  48. ll_f.setLayoutParams(lp_f);
  49. ll_f.setOrientation(LinearLayout.VERTICAL);
  50. ll_f.setClickable(true);
  51. Drawable ll_fd = this.getResources().getDrawable(R.drawable.myborder);
  52. try{
  53. ll_f.setBackgroundDrawable(ll_fd);//还必须要使用这个方法,虽然提示过期
  54. }
  55. catch(Exception e){
  56. ll_f.setBackgroundColor(Color.parseColor("#ffffff"));
  57. }
  58. ll_f.addView(rl);
  59. ll_f.addView(ll_line);
  60. return ll_f;
  61. }

android:background=”@drawable/layout_leftradiusborder”可以不用setBackgroundDrawable提示过期了,
可以使用 ll_f.setBackgroundResource(R.drawable.layout_leftradiusborder);
LinearLayout.LayoutParams.WRAP_CONTENT与
RelativeLayout.LayoutParams.WRAP_CONTENT感觉都是一样的效果

一:在后台添加表格

  1. public void Eidt(List<TableItem> _tis,LinearLayout popView,Activity _mActivity)
  2. {
  3. TableLayout tl = (TableLayout)popView.findViewById(R.id.mytab);
  4. tl.setStretchAllColumns(true);
  5. TableRow.LayoutParams trlpf = new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT,
  6. TableRow.LayoutParams.WRAP_CONTENT);//表格内添加的控件必须要用TableRow.LayoutParams不然调用tl.setStretchAllColumns会报错
  7. trlpf.setMargins(0, 9, 0, 0);
  8. trlpf.gravity = Gravity.RIGHT|Gravity.CENTER;//相当于layout_gravity
  9. TableRow.LayoutParams trlpfe = new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT,
  10. TableRow.LayoutParams.WRAP_CONTENT);
  11. trlpfe.setMargins(0, 9, 0, 0);
  12. for(int i=1;i<_tis.size()-4;i++)//
  13. {
  14. TableItemNameValueShrink tt = (TableItemNameValueShrink)_tis.get(i);
  15. TableRow tr = new TableRow(_mActivity);
  16. tr.setLayoutParams(trlpf);
  17. TextView tv = new TextView(_mActivity);
  18. tv.setTextColor(Color.parseColor("#bbbbbb"));
  19. tv.setLayoutParams(trlpf);
  20. tv.setGravity(Gravity.RIGHT);//设置文字居中
  21. tv.setText(tt.name+":");
  22. tv.setEms(4);//小技巧文字不够可以设置此固定几个字符的长度
  23. EditText ed = new EditText(_mActivity);
  24. ed.setLayoutParams(trlpfe);
  25. ed.setText(tt.value);
  26. ed.setTextColor(Color.parseColor("#666666"));
  27. ed.setEms(9);
  28. tr.addView(tv);
  29. tr.addView(ed);
  30. tl.addView(tr);
  31. }
  32. }

二:常用样式设置

  1. TableRow.LayoutParams trlpf = new TableRow.LayoutParams(0,
  2. TableRow.LayoutParams.WRAP_CONTENT,7);
  3. trlpf.setMargins(2, 2, 0, 0); //left, top, right, bottom
  4. trlpf.gravity = Gravity.RIGHT|Gravity.CENTER;//设置layoutmagin
  5. TextView staName = new TextView(WTRes.this);
  6. staName.setLayoutParams(trlpf);//添加布局
  7. staName.setText(jsonObj.getString("staName"));
  8. staName.setTextColor(Color.parseColor("#000000"));
  9. staName.setBackgroundColor(Color.parseColor("#BCD553"));
  10. staName.setTextSize(14);
  11. staName.setGravity(Gravity.CENTER);//设置文字居中
  12. tr.addView(staName);
  1. package yu.activity;
  2. import android.app.Activity;
  3. import android.graphics.Color;
  4. import android.os.Bundle;
  5. import android.view.Gravity;
  6. import android.view.ViewGroup.LayoutParams;
  7. import android.widget.LinearLayout;
  8. import android.widget.RelativeLayout;
  9. import android.widget.TextView;
  10. public class TextViewJava extends Activity {
  11. private LinearLayout mLayout;
  12. private TextView mTextView;
  13. private RelativeLayout mLayout2;
  14. private TextView mTextView2;
  15. public void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. // 创建一个线性布局
  18. mLayout = new LinearLayout(this);
  19. // 接着创建一个TextView
  20. mTextView = new TextView(this);
  21. // 第一个参数为宽的设置,第二个参数为高的设置。
  22. mTextView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,
  23. LayoutParams.WRAP_CONTENT));
  24. // 设置mTextView的文字
  25. mTextView.setText("这是我的TextView");
  26. // 设置字体大小
  27. mTextView.setTextSize(20);
  28. // 设置背景
  29. mTextView.setBackgroundColor(Color.BLUE);
  30. // 设置字体颜色
  31. mTextView.setTextColor(Color.RED);
  32. //设置居中
  33. mTextView.setGravity(Gravity.CENTER);
  34. //
  35. mTextView.setPadding(1, 0, 0, 0);//left, top, right, bottom
  36. // 将TextView添加到Linearlayout中去
  37. mLayout.addView(mTextView);
  38. // 创建一个线性布局
  39. mLayout2 = new RelativeLayout(this);
  40. // 接着创建一个TextView
  41. mTextView2 = new TextView(this);
  42. // 第一个参数为宽的设置,第二个参数为高的设置。
  43. mTextView2.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,
  44. LayoutParams.WRAP_CONTENT));
  45. // 设置mTextView的文字
  46. mTextView2.setText("这是我的TextView");
  47. // 设置字体大小
  48. mTextView2.setTextSize(20);
  49. // 设置背景
  50. mTextView2.setBackgroundColor(Color.BLUE);
  51. // 设置字体颜色
  52. mTextView2.setTextColor(Color.RED);
  53. // 设置居中
  54. mTextView2.setGravity(Gravity.CENTER);
  55. //相对位置
  56. RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams)mTextView2.getLayoutParams();
  57. params.setMargins(1, 0, 0, 0);// 通过自定义坐标来放置你的控件left, top, right, bottom
  58. mTextView .setLayoutParams(params);//
  59. // 将TextView添加到RelativeLayout中去
  60. mLayout2.addView(mTextView2);
  61. // 展现这个线性布局
  62. setContentView(mLayout);
  63. setContentView(mLayout2);
  64. }
  65. }

设置可见性 setVisibility():

三:动态添加布局文件

  1. LinearLayout layout;
  2. @Override
  3. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  4. Bundle savedInstanceState) {
  5. // TODO Auto-generated method stub
  6. layout=new LinearLayout(getActivity());
  7. ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(
  8. ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT);
  9. layout.setOrientation(LinearLayout.VERTICAL);//显示方向
  10. layout.setLayoutParams(params);
  11. return layout;
  12. //return inflater.inflate(R.layout.mytable_trans, container, false);
  13. //return super.onCreateView(inflater, container, savedInstanceState);
  14. }

四:动态相对布局

  1. TextView tv = new TextView(this);
  2. tv.setText("高度:100cm");
  3. tv.setTextColor(Color.BLUE);
  4. RelativeLayout.LayoutParams tvparams = new RelativeLayout.LayoutParams(
  5. ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT);
  6. tvparams.setMargins(0, 0, 0,80);
  7. tvparams.addRule(RelativeLayout.CENTER_HORIZONTAL);//水平居中
  8. tvparams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);//在布局底部
  9. tv.setLayoutParams(tvparams); //使layout更新
  10. layout.addView(tv);

lp.addRule(RelativeLayout.ALIGN_PARENT_RIGHT, RelativeLayout.TRUE);
lp.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
// addRule方法 将按钮布局添加到button1的右边
params.addRule(RelativeLayout.RIGHT_OF, R.id.button1);
lpiv.addRule(RelativeLayout.RIGHT_OF,iv.getId());

五:listview后台设置高度,注意dp像素的转化
定义一个函数将dp转换为像素

  1. public int Dp2Px(Context context, float dp) {
  2. final float scale = context.getResources().getDisplayMetrics().density;
  3. return (int) (dp * scale + 0.5f);
  4. }

定义函数动态控制listView的高度

  1. public void setListViewHeightBasedOnChildren(ListView listView) {
  2. //获取listview的适配器
  3. ListAdapter listAdapter = listView.getAdapter();
  4. //item的高度
  5. int itemHeight = 46;
  6. if (listAdapter == null) {
  7. return;
  8. }
  9. int totalHeight = 0;
  10. for (int i = 0; i < listAdapter.getCount(); i++) {
  11. totalHeight += Dp2Px(getApplicationContext(),itemHeight)+listView.getDividerHeight();
  12. }
  13. ViewGroup.LayoutParams params = listView.getLayoutParams();
  14. params.height = totalHeight;
  15. listView.setLayoutParams(params);
  16. }

欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

解决android studio运行出现Session 'app': Error Installing APKs错误

之前项目好好的,早上打开突然报错Session &#39;app&#39;: Error Installing APKs解决方法:选择Build———— clean proje...

android使用MPandroidChart开源图表折线图

1. 将mpandroidchartlibrary-2-1-6.ja包copy到项目的libs中在引用2:布局文件&lt;com.github.mikephil.charting.charts.Line...

android 弹出选择框简单通用弹出选择框

制作一个简单通用的弹出选择框LinearLayoutll=(LinearLayout)getActivity().findViewById(R.id.log_sel_qyport); ll.set...

android studio打包脱坑1

打包时出现的&#39;:app:validateExternalOverrideSigning&#39;问题报错如下解决方法错误的原因是找不到这个签名文件。由于K...

javaandroid 使用socket.io-client连接nodejs websocket

socket.io-client相比SocketIO.jar使用起来更方便一点publicvoidconnection(finalMapAction_action){ try{ IO.Optionsopt...

javaandroid 使用SocketIO.jar连接nodejs websocket

socket.io-client版连接nodejs websockethttp://www.tnblog.net/aojiancc2/article/details/2562一:更具url建立连接,调用...

Xamarin: android.permission.CALL_PHONE 的权限问题

写个电话拨号器,很简单就一个Edittext和一个button,用来输入号码并且点击按钮拨打电话,但是写好以后报的是安全错误,我上...

android 漂亮的listview

效果如下:首先在drawable下定义选择器shape_bg_listview.xml 实现圆角:&lt;?xmlversion=&quot;1.0&quot;encoding=&quot;...

android 获取导航栏的高度

获取Android手机屏幕的高度/** *获取状态栏高度 * *@paramcontext上下文 *@return高度 */publicstaticintgetStatusBar...

android 代码

一、判断WiFi是否打开1、注册权限//需注册权限android.permission.ACCESS_WIFI_STATE WifiManagerwifiManager=(WifiManage...

ionic cordova platform add android报错

ionic各种环境以及配置完但是添加平台报错:Using cordova-fetch for anroidFailed to fetch platform anroidProbably this...

android 布局文件里输入框的值自动转换到类里边可以增加为空验证

android 布局文件里输入框的值自动转换到类里边,不用一个一个去读取在赋值先看看android遍历view子控件,用回调函数 /** ...

android 布局实例解析 格子菜单效果

使用android权重布局,使每个格子和间隔在不同手机中自动适配: &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8...

android后台动态添加布局文件控件与动态设置属性2

原布局文件 &lt;ScrollView android:layout_width=&quot;wrap_content&quot; android:layout_heig...

android 绘制自定义控件,android绘制同心圆,android绘制小三角,android画虚线

一:实现同心圆加小三角指向效果 同心圆public class RingView extends View{ private Paint paint; privat...