Android 在代码中控制View的填充方式和宽度、高度

http://blog.csdn.net/darlk/article/details/7578020

http://www.eoeandroid.com/thread-5687-1-1.html

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

LayoutParams 之控制填充方式

问题:

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

Android 在代码中控制View的填充方式和宽度、高度_第1张图片

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

Android 在代码中控制View的填充方式和宽度、高度_第2张图片

布局文件:

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.FILL_PARENT, LayoutParams.FILL_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);

你可能感兴趣的:(android,view)