Fragment、okHttp3、Glide的使用(为方便自己使用而写,下面所有内容为默认你懂一点)


Fragment(碎片化布局)

使用场景描述:

在Activity中,需要有一个无论怎么切换依旧屹立不动的底部导航,这时候就可以用到Fragment了,这个东西就相当于在你的Activity中嵌入了一个可以随意切换的页面。

1.xml部分
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#f1f1f1">
    
    //
    <FrameLayout
        android:id="@+id/frameOne"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="9"/>

    //底部导航
    <LinearLayout
        android:id="@+id/tabbar"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_weight="1"
        android:orientation="horizontal">

        <RelativeLayout
            android:id="@+id/tab1"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/tabOne"
                android:layout_width="32dp"
                android:layout_height="32dp" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="btn1"
                android:layout_below="@id/tabOne"/>

        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/tab2"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/tabTwo"
                android:layout_width="32dp"
                android:layout_height="32dp" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="btn1"
                android:layout_below="@+id/tabTwo"/>

        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/tab3"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/tabThree"
                android:layout_width="32dp"
                android:layout_height="32dp" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="btn1"
                android:layout_below="@+id/tabThree"/>

        </RelativeLayout>

    </LinearLayout>

</LinearLayout>
2.java部分
package com.example.ylb;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.RelativeLayout;

import com.example.ylb.MainFragment.IndexFragment;
import com.example.ylb.MainFragment.MyPageFragment;
import com.example.ylb.MainFragment.OldcarFragment;

public class MainActivity extends AppCompatActivity {

    private IndexFragment indexFragment = new IndexFragment();//实例化indexFragment
    private OldcarFragment oldcarFragment =  new OldcarFragment();//实例化oldcarFragment
    private MyPageFragment myPageFragment =  new MyPageFragment();//实例化myPageFragment
    private RelativeLayout mTab1;
    private RelativeLayout mTab2;
    private RelativeLayout mTab3;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //把indexFragment添加到Acticity中
        getSupportFragmentManager().beginTransaction().add(R.id.frameOne, indexFragment).commitNowAllowingStateLoss();

        //跳转index
        mTab1 = (RelativeLayout) findViewById(R.id.tab1);
        mTab1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                getSupportFragmentManager().beginTransaction().replace(R.id.frameOne,indexFragment).commitNowAllowingStateLoss();
            }
        });

        //跳转oldcar
        mTab2 = (RelativeLayout) findViewById(R.id.tab2);
        mTab2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                getSupportFragmentManager().beginTransaction().replace(R.id.frameOne,oldcarFragment).commitNowAllowingStateLoss();
            }
        });

        //跳转mypage
        mTab3 = (RelativeLayout) findViewById(R.id.tab3);
        mTab3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                getSupportFragmentManager().beginTransaction().replace(R.id.frameOne,myPageFragment).commitNowAllowingStateLoss();
            }
        });
    }
}
3.Fragment部分
package com.example.ylb.MainFragment;

import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v7.widget.DividerItemDecoration;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.Toast;


public class OldcarFragment extends Fragment {

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        //R.layout.oldcar_fragment是你写好的布局文件
        view = inflater.inflate(R.layout.oldcar_fragment,container,false);
        //对recycleview进行配置
        return view;
    }

    @Override
    public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
    }

}


加载网络图片框架Glide

1.引用

implementation 'com.github.bumptech.glide:glide:4.5.0'

2.使用(只放一个基础使用的代码,如果需要更深层次的优化请百度)
//创建变量
private ImageView banner;
private String bannerSrc = "图片链接放这里";

//使用
banner = view.findViewById(R.id.banner);
Glide.with(this).load(bannerSrc).into(banner);
3.设置图片显示带圆角或正圆
//设置图片圆角角度
RoundedCorners roundedCorners = new RoundedCorners(50);
//通过RequestOptions扩展功能,override:采样率,因为ImageView就这么大,可以压缩图片,降低内存消耗
RequestOptions options = RequestOptions.bitmapTransform(roundedCorners).override(300, 300);


RequestOptions mRequestOptions = RequestOptions.circleCropTransform()
.diskCacheStrategy(DiskCacheStrategy.NONE)//不做磁盘缓存
.skipMemoryCache(true);//不做内存缓存


portrait = findViewById(R.id.portrait);
//apply里写options就是圆角
//apply里写mRequestOptions就是正圆
Glide.with(this).load(portraitSrc).apply(mRequestOptions).into(portrait);

网络请求框架OkHttp3

1.设计思路

首先我写了一个工具类,里面是一些在发起请求时需要执行的代码,其次是一个抽象类,这个抽象类的作用就是写,在请求成功之后需要执行的代码。


2.工具类(因为我是前端自学原生所以我习惯叫它Ajax)
package com.example.ylb.CustomEntityClass;

import android.os.Handler;
import android.os.Looper;
import android.util.Log;

import com.example.ylb.CustomEntityClass.AjaxResponse.AjaxResponse;
import com.google.gson.Gson;

import org.json.JSONException;

import java.io.IOException;
import java.util.HashMap;

import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

import static android.support.constraint.Constraints.TAG;

public class Ajax{

    protected static final int SUCCESS_MESSAGE = 0;
    protected static final int FAILURE_MESSAGE = 1;

    public void ajaxRequest(final String url, final Object data,final AjaxResponse ajaxResponse){

        //请求体类型
        MediaType mediaType = MediaType.parse("application/json");

        //请求体结构(如果后端限制了请求体结构,就按照结构写,没有限制可以不要这一步)
        HashMap<String, Object> jsonObject = new HashMap<>();
        jsonObject.put("info", data);
        jsonObject.put("auth", "");

        //转换成JSON字符串
        Gson gson = new Gson();
        String userJson = gson.toJson(jsonObject);

        //创建请求
        OkHttpClient okHttpClient = new OkHttpClient.Builder().build();

        //发起请求
        final Request request = new Request.Builder()
                .url(url)
                .post(RequestBody.create(mediaType, userJson))
                .build();
        Call call = okHttpClient.newCall(request);
        call.enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                //请求失败回调
                Log.d(TAG, "onFailure: ");
            }

            @Override
            public void onResponse(final Call call,final Response response) throws IOException {
                //请求成功回调
                //response.body().bytes() 可以获取到后台传回的参数,再通过String responsa = new String(tmp)转换成字符串

                byte[] tmp = response.body().bytes();
                final String responsa = new String(tmp);
                Log.d(TAG, "call: " + call);
                Log.d(TAG, "onResponse: " + responsa);
                
                //把需要执行的逻辑代码扔回主线程
                Handler mainHandler = new Handler(Looper.getMainLooper());
                mainHandler.post(new Runnable() {
                    @Override
                    public void run() {
                        try {
                            //抽象类,需要执行的逻辑代码
                            //看到这里没看懂的回到上面看ajaxRequest方法的形参
                            ajaxResponse.onResponse(call,responsa);
                        } catch (JSONException e) {
                            e.printStackTrace();
                        }
                    }
                });
            }
        });
    }
}

3.抽象类
package com.example.ylb.CustomEntityClass.AjaxResponse;

import org.json.JSONException;
import okhttp3.Call;

public abstract class AjaxResponse {

    public abstract void onResponse(Call call, String responsa) throws JSONException;
}

4.使用
//发起请求
    private void initData() {
        //这个是需要传回的数据,我这里用的是pojo类,你也可以自己写一个对象
        sell_car_info sellcarinfo = new sell_car_info();
        sellcarinfo.old_and_new = 0;
        sellcarinfo.pageSize = 20;
        sellcarinfo.pageNum = 1;
        
        //实例化工具类
        Ajax $ = new Ajax();
        //使用工具类里的方法
        $.ajaxRequest("请求地址", sellcarinfo, new AjaxResponse() {
            @Override
            public void onResponse(Call call, String responsa) throws JSONException {
                //逻辑代码
                JSONObject object = new JSONObject(responsa);
                JSONArray data = object.getJSONArray("data");
                Log.d(TAG,"data:"+object);
                for (int i=0;i<data.length();i++){
                    JSONObject oj = data.getJSONObject(i);
                    Log.d(TAG,"type_name:"+oj.getString("type_name"));
                }
            }
        });
    }

持续更新中...

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343