本文整理汇总了Java中android.widget.TableRow.LayoutParams.setMargins方法的典型用法代码示例。如果您正苦于以下问题:Java LayoutParams.setMargins方法的具体用法?Java LayoutParams.setMargins怎么用?Java LayoutParams.setMargins使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.TableRow.LayoutParams
的用法示例。
在下文中一共展示了LayoutParams.setMargins方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createTextView
import android.widget.TableRow.LayoutParams; //导入方法依赖的package包/类
private TextView createTextView(boolean endline, boolean endcolumn){
TextView text = new TextView(this, null, R.style.frag2HeaderCol);
int bottom = endline ? 1 : 0;
int right = endcolumn ? 1 :0;
LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 0.3f);
params.setMargins(1, 1, right, bottom);
text.setLayoutParams(params);
text.setPadding(4, 4, 10, 4);
text.setBackgroundColor(getResources().getColor(R.color.white));
return text;
}
示例2: createTextView
import android.widget.TableRow.LayoutParams; //导入方法依赖的package包/类
private TextView createTextView(boolean endline, boolean endcolumn){
TextView text = new TextView(getActivity(), null, R.style.frag2HeaderCol);
int bottom = endline ? 1 : 0;
int right = endcolumn ? 1 :0;
LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 0.3f);
params.setMargins(1, 1, right, bottom);
text.setLayoutParams(params);
text.setPadding(4, 4, 10, 4);
text.setBackgroundColor(getResources().getColor(R.color.white));
return text;
}