转载请标明出处:http://blog.csdn.net/xx326664162/article/details/51331694 文章出自:薛瑄的博客

你也可以查看我的其他同类文章,也会让你有一定的收货!

在java代码中加载view,如何控制view的大小和填充方式呢??

LayoutParams 之控制填充方式

问题:

有个LinearLayout,用来动态加载别的view页面,EditText的宽度是由里面的内容决定 ,无法显示为match_parent的效果

想要的效果:EditText能以match_parent的width来显示。

布局文件:

main 布局:

<?xml version="1.0" encoding="utf-8"?>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"      android:layout_width="fill_parent"      android:layout_height="fill_parent"      android:background="#fff"      android:orientation="vertical" >      <LinearLayout          android:id="@+id/layout"          android:layout_width="fill_parent"          android:layout_height="fill_parent" >      LinearLayout>  LinearLayout>  

test.xml 布局:

<?xml version="1.0" encoding="utf-8"?>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"      android:layout_width="fill_parent"      android:layout_height="fill_parent"      android:background="#fff"      android:orientation="vertical" >      <TextView          android:layout_width="fill_parent"          android:layout_height="wrap_content"          android:text="测试页面" />      <LinearLayout          android:layout_width="fill_parent"          android:layout_height="wrap_content"          android:layout_margin="5dip"          android:orientation="horizontal" >          <TextView              android:layout_width="wrap_content"              android:layout_height="wrap_content"              android:text="账号:" />          <EditText              android:layout_width="fill_parent"              android:layout_height="wrap_content" />      LinearLayout>      <LinearLayout          android:layout_width="fill_parent"          android:layout_height="wrap_content"          android:layout_margin="5dip"          android:orientation="horizontal" >          <TextView              android:layout_width="wrap_content"              android:layout_height="wrap_content"              android:text="密码:" />          <EditText              android:layout_width="fill_parent"              android:layout_height="wrap_content" />      LinearLayout>  LinearLayout>  

解决办法:

在动态加载的view时定义一个LayoutParams,在添加view时明确定义这个view的LayoutParams

public class TestActivity extends Activity {      /** Called when the activity is first created. */      @Override      public void onCreate(Bundle savedInstanceState) {          super.onCreate(savedInstanceState);          setContentView(R.layout.main);          LinearLayout layout = (LinearLayout) findViewById(R.id.layout);          View view = getLayoutInflater().inflate(R.layout.test, null);          LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);          layout.addView(view, params);      }  }  

LayoutParams 之控制宽度和高度

 private Button mbtn; mbtn = (Button) findViewById(R.id.btn_test);         LayoutParams lp;         lp=mbtn.getLayoutParams(); lp.width=100; lp.height=200;         mbtn.setLayoutParams(lp);

http://blog.csdn.net/darlk/article/details/7578020
http://www.eoeandroid.com/thread-5687-1-1.html

关注我的公众号,轻松了解和学习更多技术

更多相关文章

  1. 玩Android项目开发4------首页(ListView实现文章置顶)
  2. Android(安卓)屏幕适配(1)
  3. 关于Android的极光推送的消息栏
  4. Android中如何使控件保持固定宽高比
  5. Android(安卓)自定义View - 网络加载 ProgressBar 加载与隐藏
  6. 一起学android之利用回调函数onCreateDialog实现加载对话框(23)
  7. android手动设置布局
  8. Android中用ViewPager和Fragment内嵌WebView
  9. Android(安卓)异步加载——AsyncTask详谈

随机推荐

  1. Android移动图片
  2. Googorola与七个小矮人
  3. Android 安全框架 -- 总概
  4. 将tensorflow训练好的模型移植到android
  5. PC端如何通过USB线与Android设备通信
  6. AndroidStudio使用技巧
  7. Android(安卓)pm命令 以及在终端安装卸载
  8. Android自动测试之benchmark test 简介
  9. Android 性能优化之内存泄漏检测以及内存
  10. android 学习技术点 网址集锦