码迷,mamicode.com
首页 > 移动开发 > 详细

纯Java方式 开发Android UI界面

时间:2015-07-15 15:03:55      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:android

由于部分界面比如一个Fragment 他的布局文件 几乎就是几行代码 并且好几个list列表的Fragmentxml几乎都一样
xml 个数激增 此时部分小布局放在代码中去 我感觉会更好
也有利于 防止 反编译

package yangdc.common.fragment.base;

import com.handmark.pulltorefresh.library.PullToRefreshBase.Mode;
import com.handmark.pulltorefresh.library.PullToRefreshListView;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.LinearLayout;

public class BaseListFragment extends BaseFragment{

    public PullToRefreshListView pullToRefreshListView;
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        FrameLayout frameLayout = new FrameLayout(getActivity());
        pullToRefreshListView = new PullToRefreshListView(getActivity(),Mode.BOTH);
        pullToRefreshListView.setLayoutParams(
                    new LinearLayout.LayoutParams(
                            LinearLayout.LayoutParams.MATCH_PARENT,
                            LinearLayout.LayoutParams.MATCH_PARENT
                    )
                );
        frameLayout.addView(pullToRefreshListView);
        return frameLayout;
    }
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

纯Java方式 开发Android UI界面

标签:android

原文地址:http://blog.csdn.net/ydc__/article/details/46892957

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!