Android Flutter 構(gòu)建布局UI實(shí)戰(zhàn)(二)

這幾天一直在學(xué)習(xí), 今天有時(shí)間整理一下學(xué)習(xí)的內(nèi)容用于記錄與分享著隆,詳細(xì)的控件使用描述有興趣的可以去官網(wǎng)上看狡相,我這邊自己寫了一個(gè)很簡單的小demo,包含了一些基礎(chǔ)的知識(shí)褪迟。


surprised.png

記錄的知識(shí)點(diǎn):
· 1 底部菜單導(dǎo)航
· 2 頁面的跳轉(zhuǎn)
· 3 ListView
· 4 吐司(這個(gè)是內(nèi)部實(shí)現(xiàn)引用的冗恨,具體flutter自帶的框架,暫時(shí)不清楚)
· 5 涉及到一些布局的書寫(屬性)
· 6 res資源的引用
· 7 涉及到的一些widget使用介紹味赃,或在注解或在代碼片段后掀抹。

項(xiàng)目效果圖:

home.png

一、頁面的跳轉(zhuǎn)
我自己寫了一個(gè)頁面就放了一個(gè)RaisedButton心俗,跳轉(zhuǎn)到首頁傲武。


transition.png

RaisedButton就是一個(gè)button,實(shí)現(xiàn)onPressed監(jiān)聽btn事件城榛。
Navigator這個(gè)是用來進(jìn)行跳轉(zhuǎn)頁面的揪利。

涉及到的一些需要介紹的控件我用都**來表示注解了, //看不清楚
import 'package:flutter/material.dart'; **基本多是這個(gè)包
import 'package:flutter_app/MainActivity.dart'; **我跳轉(zhuǎn)的首頁面

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(**MaterialApp個(gè)人理解為程序的渲染入口
      title: 'Hello World',
      theme: new ThemeData( **全局主題只是由應(yīng)用程序根MaterialApp創(chuàng)建的Theme來表示
        primaryColor: Colors.lightBlue,
      ),
      home: new RandomWords(),**調(diào)用方法體
    );

  }
}

class RandomWordsState  extends State<RandomWords>{

**Scaffold 是 Material library 中提供的一個(gè)widget,
 它提供了默認(rèn)的導(dǎo)航欄狠持、標(biāo)題和包含主屏幕widget樹的body屬性土童。widget樹可以很復(fù)雜。
** Center這個(gè)空間居中
** RaisedButton  = button
** Navigator頁面的跳轉(zhuǎn)工坊,差不多都是這個(gè)寫法献汗,固定
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Center(
        child: new RaisedButton(
            child: new Text('登錄'),
            onPressed: (){
          Navigator.push(context, new MaterialPageRoute(builder: (context)=>new MainActivity()));
        }),
      ),
    );
  }
}

class RandomWords extends StatefulWidget {
  @override
  ** =>單行函數(shù)或方法的簡寫
  createState() => new RandomWordsState();
}

其中StatelessWidget它是表示所有的屬性都是最終的敢订,可以理解為屬性不可變。
StatefulWidget 我覺得可以理解為android中某一個(gè)自定義的方法(代碼書寫ui)罢吃,方法體的內(nèi)容是可變的楚午,當(dāng)然它也是一個(gè)widget。在flutter中書寫一個(gè)這樣的方法尿招,就需要按照上述代碼中的方式來書寫矾柜。

二、MainActivity頁面

  • images文件的引用就谜。

頁面中包含了一些圖片資源怪蔑,記錄一下images的引用方式。

項(xiàng)目結(jié)構(gòu)圖.png

一開始Flutter是沒有images文件夾的丧荐,自己創(chuàng)建一個(gè)缆瓣,跟android ios保持同級(jí)。
pubspec.yaml文件中進(jìn)行images的關(guān)聯(lián)虹统,pubspec.yaml這個(gè)可以理解為build.gradle弓坞。

引用界面.png

在Flutter的節(jié)點(diǎn)下新增(引用全目錄 ,若單張全名稱包含后綴):
assets:
- images/
添加完畢后在右上角有同步按鈕车荔,別忘了


image.png

package get 加載引入的包
package upgradle 升級(jí)包
flutter upgradle 整理升級(jí) 包括Dart SDK version等
flutter doctor 檢測需要安裝的東西

  • 包的引用
    當(dāng)初在看官方的時(shí)候渡冻,引用了一個(gè)english_words的包,項(xiàng)目中沒有用忧便,但是 這邊記錄一下引用包的方式族吻。


    image.png

lib/main.dartimport 'package:english_words/english_words.dart';就可以了,需要注意的是珠增,在pubspec.yaml中添加了之后記得package get呼奢,在彈出的message窗口中Process finished with exit code 0 表示引用成功。

  • 底部導(dǎo)航 BottomNavigationBarItem

在看代碼之前:

此處簡要一下代碼的書寫邏輯切平。
因?yàn)轫撁媸强勺兛烧{(diào)整的,所以我肯定需要書寫StatefulWidget辐董。
接著 初始了切換的圖片悴品,文字等資源
在BottomNavigationBarItem中主要是通過 下標(biāo) 切換圖片和文字的顯示,當(dāng)然也包含切換頁面简烘,切換頁面的書寫方式類似android中的fragment苔严,屬于獨(dú)立頁面,配合使用IndexedStack進(jìn)行切換頁面的顯示與隱藏孤澎。

具體的代碼含義届氢,我在注釋里進(jìn)行介紹。

import 'package:flutter/cupertino.dart'; **底部導(dǎo)航切換覆旭,需導(dǎo)入
import 'package:flutter/material.dart'; **上面注解介紹過
import 'package:flutter_app/page/homeinfo.dart';**fragment頁面
import 'package:flutter_app/page/myinfo.dart';**fragment頁面

void main() => runApp(new MainActivity());

class MainActivity extends StatelessWidget {
  **這塊沒啥介紹的退子, 同上 
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Hello World',
      theme: new ThemeData(
        primaryColor: Colors.blue,
      ),
      home: new RandomWords(),
    );
  }
}

class RandomWordsState extends State<RandomWords> {
  int _tabIndex = 0;  ** 默認(rèn)當(dāng)前頁

//  static const double IMAGE_ICON_WIDTH = 30.0; 標(biāo)題上的返回按鈕
//  static const double ARROW_ICON_HEIGHT = 16.0; 標(biāo)題上的返回按鈕

  final normalTextColor = new TextStyle(color: const Color(0xff969696)); **默認(rèn)的顏色
  final selectTextColor = new TextStyle(color: const Color(0xff63ca6c)); **選擇的顏色

  var tabImage;  **切換的image
  var _body;   **IndexedStack的對(duì)象
  var tabNameList = ['首頁', '地圖', '我的']; **底部導(dǎo)航名稱
  var titleNameList = ['動(dòng)服務(wù)平臺(tái)', '地圖', '我的']; **標(biāo)題名稱
  
//  var leftIcon;標(biāo)題上的返回按鈕
//  RandomWordsState(){
//    leftIcon = setImages("images/icon_left.png");
//  }

**統(tǒng)一設(shè)置image屬性 岖妄,path為images的引用路徑
  Image getImagePath(path) {
    return new Image.asset(
      path,
      width: 20.0,
      height: 20.0,
    );
  }

**切換圖片的初始化,包括切換頁面的body初始 寂祥, getImagePath為統(tǒng)一設(shè)置的images屬性荐虐。
  void initData() {
    if (tabImage == null) {
      tabImage = [
        [
          getImagePath('images/activity_home_unchecked.png'),
          getImagePath('images/activity_home_checked.png')
        ],
        [
          getImagePath('images/activity_map_unchecked.png'),
          getImagePath('images/activity_map_checked.png')
        ],
        [
          getImagePath('images/activity_mine_unchecked.png'),
          getImagePath('images/activity_mine_checked.png')
        ],
      ];
    }

    ** children這個(gè)我個(gè)人理解它是一個(gè)組合控件,像是一個(gè)容器丸凭,可以包含很多不同的Ui福扬,然后拼湊到一起。
    _body = new IndexedStack(
      children: <Widget>[new HomeInfo(), new MyInfo(), new MyInfo()],
      index: _tabIndex,
    );
  }


** 根據(jù)下標(biāo)返回 text的顏色值
  TextStyle getTabTextStyle(int curIndex) {
    if (curIndex == _tabIndex) {
      return selectTextColor;
    }
    return normalTextColor;
  }
** 調(diào)用getTabTextStyle 根據(jù)下標(biāo)設(shè)置text的顏色值
  Text getTabTitle(int curIndex) {
    return new Text(tabNameList[curIndex], style: getTabTextStyle(curIndex));
  }

** 返回當(dāng)前下標(biāo)的images中的 所選圖片
  Image getTabIcon(int curIndex) {
    if (curIndex == _tabIndex) {
      return tabImage[curIndex][1];
    }
    return tabImage[curIndex][0];
  }



  //設(shè)置iamge的位置
//  Widget setImages(path) {
//    return new Padding(
//        padding: const EdgeInsets.fromLTRB(0.0, 0.0, 10.0, 0.0),
//        child: new Image.asset(path,
//            width: IMAGE_ICON_WIDTH, height: ARROW_ICON_HEIGHT));
//  }


** AppBar標(biāo)題{title標(biāo)題文字 {Center標(biāo)題位置 child{標(biāo)題內(nèi)容} } }
** body切換的index頁面
** bottomNavigationBar底部導(dǎo)航{items導(dǎo)航數(shù)組{0,1,2}}
**onTap點(diǎn)擊(Index作為點(diǎn)擊返回值) {setState通知框架狀態(tài)已經(jīng)改變{_tabIndex 賦值當(dāng)前Index}}
  @override
  Widget build(BuildContext context) {
    initData();
    return new MaterialApp(

      home: new Scaffold(
        appBar: new AppBar(
            title: new Center(
              child: new Text(titleNameList[_tabIndex],
                  style: new TextStyle(color: Colors.white)),
//              child: new Row(
//                children: <Widget>[
//                  leftIcon,
//                  new Text(tabNameList[_tabIndex],
//                      style: new TextStyle(color: Colors.white))
//                ],
//              ),
            ),
            iconTheme: new IconThemeData(color: Colors.white)),
        body: _body,
        bottomNavigationBar: new CupertinoTabBar(
          items: <BottomNavigationBarItem>[
            new BottomNavigationBarItem(
                icon: getTabIcon(0),
                title: getTabTitle(0)),
            new BottomNavigationBarItem(
                icon: getTabIcon(1),
                title: getTabTitle(1)),
            new BottomNavigationBarItem(
                icon: getTabIcon(2),
                title: getTabTitle(2)),
          ],
          currentIndex: _tabIndex,
          onTap: (index) {
            setState(() {
              _tabIndex = index;
            });
          },
        ),
      ),
    );
  }
}

class RandomWords extends StatefulWidget {
  @override
  createState() => new RandomWordsState();
}

底部切換基本就這些惜犀,你要是只是想測試一下底部切換效果也可以像我indexedStack那樣一樣铛碑,除了首頁,剩下的復(fù)用虽界。

  • HomeInfo.dart頁面


    HomeInfo.png

考慮到頁面的布局汽烦,我分成了2個(gè)層級(jí),網(wǎng)格顯示是一個(gè)層級(jí)浓恳,報(bào)表是另外的一個(gè)層級(jí)刹缝,可以說是ListView 的兩個(gè)item,只不過是不同的item布局颈将。當(dāng)然這只是我個(gè)人的想法梢夯,經(jīng)過思考后在StatefulWidget,我返回的就是一個(gè)ListView .

var title = ["項(xiàng)目信息", "農(nóng)村公路建設(shè)統(tǒng)計(jì)報(bào)表", "路網(wǎng)結(jié)構(gòu)改造統(tǒng)計(jì)報(bào)表"];

 @override
  Widget build(BuildContext context) {
    var listview = new ListView.builder(
        itemCount: title.length, itemBuilder: (context, i) => renderRow(i));
    return listview;
  }

ListView 初始化:
itemcount 網(wǎng)格是一個(gè)單獨(dú)的布局晴圾,另外的兩個(gè)可以復(fù)用布局颂砸。
renderRow是我自定義的方法
i 算是0 、1死姚、 2人乓,其中1、2布局復(fù)用都毒。

renderRow(int i) {
    if (i == 0) { ** 此處i=0初始化網(wǎng)格的樣式色罚。
      var projectInfo = new Container(
//          color: const Color.fromRGBO(255, 255, 255, 255.0),
        decoration: new BoxDecoration(
          color: Colors.white,
        ),
        child: new Center(
          child: new Column(
            children: <Widget>[
              new Text(
                title[0],
                textAlign: TextAlign.left,
              ),
              new Container(
                color: const Color.fromRGBO(240, 248, 255, 200.0),
                child: new Row(
                  children: <Widget>[
                    new Expanded(
                        flex: 1,
                        child: new Container(
                          margin: const EdgeInsets.only(
                              top: 10.0, right: 5.0, left: 10.0, bottom: 10.0),
                          decoration: new BoxDecoration(
                              border: new Border.all(
                                  width: 1.0, color: Colors.black12),
                              borderRadius: const BorderRadius.all(
                                  const Radius.circular(10.0))),
                          height: 100.0,
                          child: new Center(
                            child: new Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: <Widget>[
                                new IconButton(
                                    icon: new Image.asset(
                                      "images/icon_way.png",
                                      width: 50.0,
                                      height: 50.0,
                                    ),
                                    onPressed: () {
                                      showShort("農(nóng)村公路建設(shè)類項(xiàng)目");
                                    }),
                                new Center(child: new Text("農(nóng)村公路建設(shè)類項(xiàng)目"))
                              ],
                            ),
                          ),
                        )),
                    new Expanded(
                        flex: 1,
                        child: new Container(
                          margin: const EdgeInsets.only(
                              top: 10.0, right: 10.0, left: 5.0, bottom: 10.0),
                          decoration: new BoxDecoration(
                              border: new Border.all(
                                  width: 1.0, color: Colors.black12),
                              borderRadius: const BorderRadius.all(
                                  const Radius.circular(10.0))),
                          height: 100.0,
                          child: new Center(
                              child: new Column(
                            mainAxisAlignment: MainAxisAlignment.center,
                            children: <Widget>[
                              new IconButton(
                                  icon: new Image.asset(
                                    "images/icon_reform.png",
                                    width: 50.0,
                                    height: 50.0,
                                  ),
                                  onPressed: () {
                                    showShort("農(nóng)村公路建設(shè)類項(xiàng)目");
                                  }),
                              new Center(child: new Text("危橋改造類項(xiàng)目"))
                            ],
                          )),
                        ))
                  ],
                ),
              ),
              new Container(
                child: new Row(
                  children: <Widget>[
                    new Expanded(
                        flex: 1,
                        child: new Container(
                          margin: const EdgeInsets.only(
                              top: 0.0, right: 5.0, left: 10.0, bottom: 10.0),
                          decoration: new BoxDecoration(
                              border: new Border.all(
                                  width: 1.0, color: Colors.black12),
                              borderRadius: const BorderRadius.all(
                                  const Radius.circular(10.0))),
                          height: 100.0,
                          child: new Center(
                            child: new Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: <Widget>[
                                new IconButton(
                                    icon: new Image.asset(
                                      "images/icon_security.png",
                                      width: 50.0,
                                      height: 50.0,
                                    ),
                                    onPressed: () {
                                      showShort("縣鄉(xiāng)安防工程類項(xiàng)目");
                                    }),
                                new Center(child: new Text("縣鄉(xiāng)安防工程類項(xiàng)目"))
                              ],
                            ),
                          ),
                        )),
                    new Expanded(
                        flex: 1,
                        child: new Container(
                          margin: const EdgeInsets.only(
                              top: 0.0, right: 10.0, left: 5.0, bottom: 10.0),
                          decoration: new BoxDecoration(
                              border: new Border.all(
                                  width: 1.0, color: Colors.black12),
                              borderRadius: const BorderRadius.all(
                                  const Radius.circular(10.0))),
                          height: 100.0,
                          child: new Center(
                              child: new Column(
                            mainAxisAlignment: MainAxisAlignment.center,
                            children: <Widget>[
                              new IconButton(
                                  icon: new Image.asset(
                                    "images/icon_security_green.png",
                                    width: 50.0,
                                    height: 50.0,
                                  ),
                                  onPressed: () {
                                    showShort("村道安防工程類項(xiàng)目");
                                  }),
                              new Center(child: new Text("村道安防工程類項(xiàng)目"))
                            ],
                          )),
                        ))
                  ],
                ),
              ),
            ],
          ),
        ),
      );
      return new GestureDetector(
        child: projectInfo,
      );
    }

    new Container(
      child: new Text(title[i]),
    );

    var listCountItem = new Padding(
      padding: const EdgeInsets.fromLTRB(15.0, 10.0, 0.0, 10.0),
      child: new Column(
        children: <Widget>[
          new Container(
            child: new Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: <Widget>[
                new Text(title[i]),
                new Container(
                  height: 200.0,
                  child: new ListView(
                    children: <Widget>[
                      new ListTile(
                        leading: new Icon(Icons.map),
                        title: new Text('Maps'),
                      ),
                      new ListTile(
                        leading: new Icon(Icons.photo_album),
                        title: new Text('Album'),
                      ),
                      new ListTile(
                        leading: new Icon(Icons.phone),
                        title: new Text('Phone'),
                      ),
                    ],
                  ),
                )
              ],
            ),
          ),
//          new ListView(
//            children: <Widget>[
//              new ListTile(
//                title: new Text('123123'),
//              )
//            ],
//          )
        ],
      ),
    );

    return new InkWell(
      child: listCountItem,
      onTap: () {
        showShort("1111");
      },
    );
  }

部分控件屬性介紹:

  • Container也是一個(gè)widget,允許自定義其子widget账劲。
    個(gè)人理解就是一個(gè)容器戳护,可以添加一些別的widget組合成想要的ui樣式 ∑俳梗可添加填充腌且,邊距,邊框或背景色榛瓮。
  • BoxDecoration這個(gè)類似shape可以操作內(nèi)填充顏色铺董,圓角等
  • Expanded 這個(gè)可以理解為權(quán)重,flex表示當(dāng)前包裹控件所在父布局的權(quán)重比例禀晓。
  • children: <Widget>[]這個(gè)屬性相當(dāng)于多個(gè)Item一樣精续,數(shù)組中的每一個(gè)值都可以看做成一個(gè)Item坝锰,具體什么樣的ui樣式看你自己怎么寫。
  • mainAxisAlignment和crossAxisAlignment屬性用來對(duì)齊其子項(xiàng)驻右。 對(duì)于行(Row)來說什黑,主軸是水平方向,橫軸垂直方向堪夭。對(duì)于列(Column)來說愕把,主軸垂直方向,橫軸水平方向森爽。具體的詳細(xì)參數(shù)恨豁,對(duì)照官網(wǎng)。
  • GestureDetector這個(gè)是用來檢測用戶做出的手勢爬迟,點(diǎn)擊的時(shí)候會(huì)回調(diào)onTap橘蜜,我這邊沒有寫onTap,我是單獨(dú)在iconButton中做的點(diǎn)擊處理付呕。寫的有點(diǎn)問題计福,不過順帶的介紹一下這個(gè)。
  • InkWell實(shí)現(xiàn)水波紋徽职,邊框效果象颖,跟BoxDecorationc差不多。

關(guān)于吐司showShort姆钉,分享實(shí)現(xiàn)方式(改的原生):

  • Android


    Android.png
 new MethodChannel(getFlutterView(), "com.coofee.flutterdemoapp/sdk/toast")
            .setMethodCallHandler(new MethodChannel.MethodCallHandler() {
              @Override
              public void onMethodCall(MethodCall methodCall, MethodChannel.Result result) {
                if ("show".equals(methodCall.method)) {
                  String text = methodCall.argument("text");
                  int duration = methodCall.argument("duration");
                  Toast.makeText(MainActivity.this, text, duration).show();
                }
              }
            });
  • IOS


    image.png
#include "AppDelegate.h"
#include "GeneratedPluginRegistrant.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  [GeneratedPluginRegistrant registerWithRegistry:self];
  // Override point for customization after application launch.

  FlutterViewController* controller = (FlutterViewController*)self.window.rootViewController;

    FlutterMethodChannel* toastChannel = [FlutterMethodChannel
                                              methodChannelWithName:@"com.coofee.flutterdemoapp/sdk/toast"
                                              binaryMessenger:controller];

    [toastChannel setMethodCallHandler:^(FlutterMethodCall* call, FlutterResult result) {
        if ([@"show" isEqualToString:call.method]) {
            // 展示toast;
            NSLog(@"顯示toast....")
        }
    }];

  return [super application:application didFinishLaunchingWithOptions:launchOptions];
}

@end

  • Flutter
import 'package:flutter/services.dart';

// 下劃線開頭的變量只在當(dāng)前package中可見说订。
const _toast = const MethodChannel('com.coofee.flutterdemoapp/sdk/toast');

const int _LENGTH_SHORT = 0;

const int _LENGTH_LONG = 1;

void show(String text, int duration) async {
  try {
    await _toast.invokeMethod("show", {'text': text, 'duration': duration});
  } on Exception catch (e) {
    print(e);
  } on Error catch (e) {
    print(e);
  }
}

void showShort(String text) {
  show(text, _LENGTH_SHORT);
}

void showLong(String text) {
  show(text, _LENGTH_LONG);
}

  • MyInfo.dart頁面


    MyInfo.png

MyInfo相對(duì)上一個(gè)頁面要簡單不少,主要是ListView潮瓶,剩下的就是一些資源的初始化。

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_app/utils/toastdart.dart';


class MyInfo extends StatefulWidget {
  @override
  createState() => new MyInfoState();
}

class MyInfoState extends State<MyInfo> {
  static const double IMAGE_ICON_WIDTH = 30.0;
  static const double ARROW_ICON_WIDTH = 16.0;

  var inons = [];
  var titleTextStyle = new TextStyle(fontSize: 16.0);
  var title = ["用戶指南", "地圖設(shè)置", "路網(wǎng)數(shù)據(jù)", "數(shù)據(jù)備份", "項(xiàng)目數(shù)據(jù)更新", "關(guān)于系統(tǒng)", "退出登錄"];
  var images = [
    "images/one.png",
    "images/two.png",
    "images/three.png",
    "images/four.png",
    "images/five.png",
    "images/six.png",
    "images/senven.png",
  ];
  var rightIcon = new Image.asset(
    "images/icon_right.png",
    width: IMAGE_ICON_WIDTH,
    height: ARROW_ICON_WIDTH,
  );

  MyInfoState() {
    for (int i = 0; i < images.length; i++) {
      inons.add(setImages(images[i]));
    }
  }

  //設(shè)置iamge的位置
  Widget setImages(path) {
    return new Padding(
        padding: const EdgeInsets.fromLTRB(0.0, 0.0, 10.0, 0.0),
        child: new Image.asset(path,
            width: IMAGE_ICON_WIDTH, height: ARROW_ICON_WIDTH));
  }

  @override
  Widget build(BuildContext context) {
    var listview = new ListView.builder(
        itemCount: title.length , itemBuilder: (context, i) => renderRow(i));
    return listview;
  }

  renderRow(int i) {
      String itemName =  title[i];
      var itemCount =  new Padding(
        padding: const EdgeInsets.fromLTRB(25.0, 25.0, 25.0, 25.0),
        child: new Row(
          children: <Widget>[
            inons[i],
            new Expanded(
                child: new Text(
                  itemName,
                  style: titleTextStyle,
                )),
            rightIcon
          ],
        ),
      );
      return new InkWell(
        child: itemCount,
        onTap: (){
          //toast
          showShort(itemName);
//          Navigator.of(context).push(new MaterialPageRoute(
//              builder: (context)=> new MainActivity()));
        },
      );
  }
}

EdgeInsets類似Android里面的margin毯辅。

總結(jié):
萬物皆Widget埂伦。
若看的不太舒服,望見諒···

github:https://github.com/BINBINXIAO/FlutterDemo

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末媚媒,一起剝皮案震驚了整個(gè)濱河市栈顷,隨后出現(xiàn)的幾起案子逆日,更是在濱河造成了極大的恐慌,老刑警劉巖萄凤,帶你破解...
    沈念sama閱讀 218,607評(píng)論 6 507
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件室抽,死亡現(xiàn)場離奇詭異,居然都是意外死亡靡努,警方通過查閱死者的電腦和手機(jī)坪圾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,239評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來惑朦,“玉大人兽泄,你說我怎么就攤上這事⊙拢” “怎么了病梢?”我有些...
    開封第一講書人閱讀 164,960評(píng)論 0 355
  • 文/不壞的土叔 我叫張陵,是天一觀的道長梁肿。 經(jīng)常有香客問我蜓陌,道長,這世上最難降的妖魔是什么吩蔑? 我笑而不...
    開封第一講書人閱讀 58,750評(píng)論 1 294
  • 正文 為了忘掉前任钮热,我火速辦了婚禮,結(jié)果婚禮上哥纫,老公的妹妹穿的比我還像新娘霉旗。我一直安慰自己,他們只是感情好蛀骇,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,764評(píng)論 6 392
  • 文/花漫 我一把揭開白布厌秒。 她就那樣靜靜地躺著,像睡著了一般擅憔。 火紅的嫁衣襯著肌膚如雪鸵闪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,604評(píng)論 1 305
  • 那天暑诸,我揣著相機(jī)與錄音蚌讼,去河邊找鬼。 笑死个榕,一個(gè)胖子當(dāng)著我的面吹牛篡石,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播西采,決...
    沈念sama閱讀 40,347評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼凰萨,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起胖眷,我...
    開封第一講書人閱讀 39,253評(píng)論 0 276
  • 序言:老撾萬榮一對(duì)情侶失蹤武通,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后珊搀,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體冶忱,經(jīng)...
    沈念sama閱讀 45,702評(píng)論 1 315
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,893評(píng)論 3 336
  • 正文 我和宋清朗相戀三年境析,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了囚枪。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 40,015評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡簿晓,死狀恐怖眶拉,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情憔儿,我是刑警寧澤忆植,帶...
    沈念sama閱讀 35,734評(píng)論 5 346
  • 正文 年R本政府宣布,位于F島的核電站谒臼,受9級(jí)特大地震影響朝刊,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蜈缤,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,352評(píng)論 3 330
  • 文/蒙蒙 一拾氓、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧底哥,春花似錦咙鞍、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,934評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至孵奶,卻和暖如春疲酌,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背了袁。 一陣腳步聲響...
    開封第一講書人閱讀 33,052評(píng)論 1 270
  • 我被黑心中介騙來泰國打工朗恳, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人载绿。 一個(gè)月前我還...
    沈念sama閱讀 48,216評(píng)論 3 371
  • 正文 我出身青樓粥诫,卻偏偏與公主長得像,于是被迫代替她去往敵國和親崭庸。 傳聞我的和親對(duì)象是個(gè)殘疾皇子怀浆,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,969評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 172,152評(píng)論 25 707
  • 用兩張圖告訴你劝堪,為什么你的 App 會(huì)卡頓? - Android - 掘金 Cover 有什么料? 從這篇文章中你...
    hw1212閱讀 12,728評(píng)論 2 59
  • 本文主要介紹了Flutter布局相關(guān)的內(nèi)容揉稚,對(duì)相關(guān)知識(shí)點(diǎn)進(jìn)行了梳理,并從實(shí)際例子觸發(fā)熬粗,進(jìn)一步講解該如何去進(jìn)行布局搀玖。...
    Q吹個(gè)大氣球Q閱讀 9,749評(píng)論 6 51
  • 暗衛(wèi)
    晴天妤天閱讀 497評(píng)論 0 1
  • 【中國安全食品河北省推廣辦公室工作分工和職責(zé)】
    mingjing1111閱讀 140評(píng)論 0 0