linearlayout-android使用代码布局LInearLayout达不到xml的效果

问题描述

android使用代码布局LInearLayout达不到xml的效果

用XML布局,能够将TextView控件居中,而代码布局不能将TextView控件居中。
经测试,代码布局中,addView函数对LayoutParams参数添加进的gravity和leftMargin等属性未进行应有的操作,但能够对宽高的设定进行对应的操作。
在NEXUS 4(android 4.3)和我自己的手机(android 4.1.2)上测试,都存在这样的问题。
百度和谷歌都未找到我想要的答案或类似情况。
如果需要LinearLayout里面的控件全部居中的话,将LinearLayout的gravity设置为Gravity.CENTER即可,但我希望一些控件左对齐,一些居中。
希望得到大家的帮助,谢谢!
XML布局文件代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="Button" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="TextView" />

</LinearLayout>

java文件布局代码:

protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.layout);

    LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
    LinearLayout mainLayout = new LinearLayout(this);
    mainLayout.setOrientation(LinearLayout.VERTICAL);
    setContentView(mainLayout, lp);

    lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    lp.gravity = Gravity.CENTER;
    Button button = new Button(this);
    button.setText("Button");
    mainLayout.addView(button, lp);

    lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    lp.gravity = Gravity.CENTER;
    TextView textView = new TextView(this);
    textView.setText("TextView");
    mainLayout.addView(textView, lp);
}

解决方案

经测试,是代码的问题,使用下面的代码,可以达到所需效果:

package com.shq.layouttest;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.Gravity;
import android.view.Menu;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;

public class MainActivity extends Activity
{

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.layout);

        ViewGroup.LayoutParams lp_ViewGroup = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
        LinearLayout mainLayout = new LinearLayout(this);
        mainLayout.setOrientation(LinearLayout.VERTICAL);
        setContentView(mainLayout, lp_ViewGroup);

        LinearLayout.LayoutParams lp_LinearLayout = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
        Button button = new Button(this);
        button.setText("Button");
        mainLayout.addView(button, lp_LinearLayout);

        lp_LinearLayout = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
        lp_LinearLayout.gravity = Gravity.CENTER;
        TextView textView = new TextView(this);
        textView.setText("TextView");
        mainLayout.addView(textView, lp_LinearLayout);
    }

}

不直接使用LayoutParams,而使用对应的LinearLayout.LayoutParams等。

解决方案二:

我试了一下你的代码 发现是可以居中的

时间: 2024-10-27 14:03:10

linearlayout-android使用代码布局LInearLayout达不到xml的效果的相关文章

Android Layout各种布局

Android Layout各种布局 LinearLayout(线性布局) 提供了控件水平垂直排列的模型,同时可以通过设置子控件的weight布局参数控制各个控件在布局中的相对大小. 水平(vertical)垂直(horizontal) fill-parent:占满整个屏幕, wrap-content:刚好适合控件内容的大小 对齐方式gravity取值: top:不改变大小,位置置于容器的顶部 bottom:不改变大小,位置置于容器的底部 left:不改变大小,位置置于容器的左边 right:不

android 线性布局LinearLayout实例代码_Android

布局文件:res/layout/activity_my.xml 复制代码 代码如下: [html]  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:id="@+id/LinearLayout"     android:

android 线性布局LinearLayout实例代码

布局文件:res/layout/activity_my.xml复制代码 代码如下:[html]  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:id="@+id/LinearLayout"     android:la

Android学习笔记(11):线性布局LinearLayout

线性布局LinearLayout是指在横向或是竖向一个接一个地排列,当排列的组件超出屏幕后,超出的组件将不会再显示出来. LinearLayout支持的XML属性和对应方法如表所示: Attribute Name Related Method Description android:baselineAligned setBaselineAligned(boolean) 若设置为false,将阻止该布局管理器与它的子元素的基线对齐 android:baselineAlignedChildIndex

Android编程之线性布局LinearLayout实例简析_Android

本文实例讲述了Android编程之线性布局LinearLayout用法.分享给大家供大家参考,具体如下: 线性布局(LinearLayout) 可以让它的子元素垂直或水平的方式排成一行(不设置方向的时候默认按照垂直方向排列). 下面示例是在别人基础上修改的main.xml: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.

Android编程之线性布局LinearLayout实例简析

本文实例讲述了Android编程之线性布局LinearLayout用法.分享给大家供大家参考,具体如下: 线性布局(LinearLayout) 可以让它的子元素垂直或水平的方式排成一行(不设置方向的时候默认按照垂直方向排列). 下面示例是在别人基础上修改的main.xml: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.

Android应用借助LinearLayout实现垂直水平居中布局

首先说的是LinearLayout布局下的居中一般是这样的: (注意:android:layout_width="fill_parent" android:layout_height="fill_parent" 属性中,若水平居中,至少在宽度上占全屏:若垂直居中,则在高度上占全屏) <LinearLayout android:layout_width="fill_parent" android:layout_height="fil

代码-这个android界面怎么布局??

问题描述 这个android界面怎么布局?? 就是中间那部分,上面的title和下面的按钮已经实现了.本人初学者,要做毕设,没什么思路,可以的话,贴个代码 解决方案 你是不是不知道中间的内容页怎么嵌入进去? 这个要看你是用什么方式做的,如果是老的方式TabWidget做的,那么你中间的内容页就是一个activity 如果是用fragment做的那么中间就是fragment 至于布局不知道怎么写,这是基本功 中间大的是一个listview用于放星期几,当然星期几是固定的,也可以用7个布局容器,随便

android 纯代码TableLayout布局

问题描述 谁可以帮忙写个纯代码的表格布局示例: 样式 : topleft center right bottom 问题补充:对不起,不要XML文件方式...请用JAVA写.地狱牢笼 写道 解决方案 main.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"