用代码写的布局,但是tablelayout不能占满整个屏幕,不想用绝对布局去设置坐标,求助解决方法~谢谢。 10

packagesumakria.gumtree;importjava.util.ArrayList;importjava.util.Random;importandroi... package sumakria.gumtree;

import java.util.ArrayList;
import java.util.Random;

import android.content.Context;
import android.graphics.Color;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.ScrollView;
import android.widget.TableLayout;
import android.widget.TableRow;
import android.widget.TextView;

public class list_frame extends ViewGroup implements Globle {

private LinearLayout linear2;
private TextView text_current;
private ScrollView scrollView;
private TableLayout tableLayout;
private TableRow tableRow_current;

private ArrayList<TableRow> trList = new ArrayList<TableRow>();
private ArrayList<TextView> tvList = new ArrayList<TextView>();

// constructor
public list_frame(Context context) {
super(context);

this.init(context);
}

// initialization.
public void init(Context context) {

LinearLayout.LayoutParams linear1para = new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

linear2 = new LinearLayout(context);
linear2.setOrientation(LinearLayout.VERTICAL);
linear2.setLayoutParams(linear1para);

// scrollview configurations
scrollView = new ScrollView(context);
scrollView.setBackgroundColor(Color.YELLOW);

// tablelayout
tableLayout = new TableLayout(context);

TableLayout.LayoutParams tableLayoutParams = new TableLayout.LayoutParams(
480, LayoutParams.WRAP_CONTENT);
tableLayout.setLayoutParams(tableLayoutParams);
tableLayout.setStretchAllColumns(false);
tableLayout.setColumnStretchable(0, false);

// tablerows
LayoutParams tableRowParams = new LayoutParams(
LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
tableRow_current = new TableRow(context);
tableRow_current.setLayoutParams(tableRowParams);
//转下篇
// set 20 rows with different texts and background colors.
for (int i = 0; i < 40; i++) {
tableRow_current = new TableRow(context);
tableRow_current.setLayoutParams(tableRowParams);

text_current = new TextView(context);
text_current.setTextSize(24.0f);
text_current.setText(new Integer(i).toString()
+ "\tlarge context!!!!!");

// generate random colors
int color;
Random rnd = new Random();
color = Color.argb(255, rnd.nextInt(255), rnd.nextInt(255),
rnd.nextInt(255));
if (i % 2 == 0) {
color = Color.DKGRAY;
}
else {
color = Color.BLACK;
}

tableRow_current.setBackgroundColor(color);

tvList.add(text_current);
tableRow_current.addView(text_current);
trList.add(tableRow_current);

tableLayout.addView(trList.get(i));
}
this.addView(scrollView);
scrollView.addView(linear2);
linear2.addView(tableLayout);

}
展开
 我来答
daay1986
2011-11-15 · TA获得超过6018个赞
知道大有可为答主
回答量:2208
采纳率:0%
帮助的人:1473万
展开全部
不建议自己写布局,除非你很熟悉,否则不建议自己写,布局这个东西都是绝对布局过来的,任何布局都是自己按照自己要求计算出坐标位子,然后直接设置。
大多数时候也不需要自己写布局,需要你要List效果的布局,可以使用BoxLayout,GridLayout,甚至可以修改JList,但是不建议自己写,麻烦而且bug多。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式