重点整理

 

<!--网络连接-->

<uses-permission android:name="android.permission.INTERNET"/>

<!--网络权限-->

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

 

 

apache依赖类 build.gradle下加入此代码

useLibrary 'org.apache.http.legacy'

 

gradle.properties下加入此代码解决新建模块时布局文件无法快捷代码

android.enableAapt2=false;

 

build.gradle下加入此代码

TabLayout的依赖库

implementation 'com.android.support:design:26.+'

PullToRefreshScrollView的依赖库

compile 'com.github.userswlwork:pull-to-refresh:1.0.0'

 

TabLayout布局文件中添加布局效果代码:

<android.support.design.widget.TabLayout
    android:id="@+id/tab_layout"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    app:tabGravity="center"
    app:tabIndicatorColor="#fff"
    app:tabMode="scrollable"
    app:tabSelectedTextColor="#f89"
    app:tabTextColor="@color/colorPrimary"
>
</android.support.design.widget.TabLayout>

 

 

自定义ListView/GridView需创建一个类,继承ListView/GridView,重写前3个方法,手写以下方法

@Override

    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

        //重新计算高度

        int newHeight=MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE>>2,MeasureSpec.AT_MOST);

        super.onMeasure(widthMeasureSpec, newHeight);

}

 

ImageLoader报错:首先查看清单文件是否配置name

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值