当前位置: 首页>>代码示例>>Java>>正文


Java ScrollView.LayoutParams方法代码示例

本文整理汇总了Java中android.widget.ScrollView.LayoutParams方法的典型用法代码示例。如果您正苦于以下问题:Java ScrollView.LayoutParams方法的具体用法?Java ScrollView.LayoutParams怎么用?Java ScrollView.LayoutParams使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.widget.ScrollView的用法示例。


在下文中一共展示了ScrollView.LayoutParams方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setMessage

import android.widget.ScrollView; //导入方法依赖的package包/类
public void setMessage(Spanned spanned) {
    ScrollView scrollView = new ScrollView(getContext());
    scrollView.setLayoutParams(new FrameLayout.LayoutParams(
            FrameLayout.LayoutParams.MATCH_PARENT,
            FrameLayout.LayoutParams.WRAP_CONTENT));
    TextView tvMessage = new TextView(getContext(), null,
            R.style.dialog_pinterest_text);
    tvMessage.setLayoutParams(new FrameLayout.LayoutParams(
            FrameLayout.LayoutParams.MATCH_PARENT,
            FrameLayout.LayoutParams.WRAP_CONTENT));
    tvMessage.setPadding(contentPadding, contentPadding, contentPadding,
            contentPadding);
    tvMessage.setLineSpacing(0.0F, 1.3F);
    tvMessage.setText(spanned);
    tvMessage.setTextColor(getContext().getResources().getColor(
            R.color.black));

    ScrollView.LayoutParams lp = new ScrollView.LayoutParams(
            ScrollView.LayoutParams.MATCH_PARENT,
            ScrollView.LayoutParams.WRAP_CONTENT);
    scrollView.addView(tvMessage, lp);
    setContent(scrollView, 0);
}
 
开发者ID:hsj-xiaokang,项目名称:OSchina_resources_android,代码行数:24,代码来源:CommonDialog.java

示例2: initLayoutParmars

import android.widget.ScrollView; //导入方法依赖的package包/类
private  ScrollView.LayoutParams initLayoutParmars() {
    ScrollView.LayoutParams layoutParams = new FrameLayout.LayoutParams(350,350);
            return layoutParams;
}
 
开发者ID:liupengandroid,项目名称:ywApplication,代码行数:5,代码来源:HomeFragment.java

示例3: createScroll

import android.widget.ScrollView; //导入方法依赖的package包/类
public static FrameLayout.LayoutParams createScroll(int width, int height, int gravity) {
    return new ScrollView.LayoutParams(getSize(width), getSize(height), gravity);
}
 
开发者ID:MLNO,项目名称:airgram,代码行数:4,代码来源:LayoutHelper.java


注:本文中的android.widget.ScrollView.LayoutParams方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。