国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

一步一步開發安卓下的react-native應用系列之進階篇

xioqua / 3270人閱讀

摘要:首先我們打開命令行,切換到項目根目錄下,輸入安裝完成后,請注意,需要把目錄下的所有字體文件拷貝到目錄下,如果沒有該目錄,請自行創建。

????????看過我前面文章的朋友們現在應該能正常運行自己的第一個RN應用了,那都是小兒科,現在我們來做點進階一點的東西。這篇文章有一些屬于干貨性的東西,請仔細閱讀。特別需要注意我加粗的部分。
????????首先我們來看下js文件結構,在項目初始化成功后,根目錄下有2個js文件,index.android.js和index.ios.js,這2個文件分別是android和ios的入口文件。這里我簡單說下RN對js文件的命名約束,如果你開發的文件只用于android系統,就需要存成.android.js文件,如果是只用于ios系統,就需要存成.ios.js文件。如果是2個系統通用的,就只要存成.js就行了,系統再編譯時會根據你的編譯選項,只打包對應的js文件。由于我現在只作安卓應用,所以我寫的js文件,不管是不是安卓專用的,我都保存成了.js文件,就不再加android前綴了,請大家注意。而且我新建了一個src目錄,我自己寫的js組件都放在此目錄下。整個項目目錄結構如下:

HelloWorld
    -__tests__
    -android
    -ios
    -node_modules
    -src
        -images
            icon.png
        -components
            -CustomText.js
        -app.js
        -index.js
        -home.js
        -find.js
        -user.js
    -.babelrc
    -.buckconfig
    -.flowconfig
    -.gitattributes
    -.gitignore
    -.watchmanconfig
    -app.json
    -index.android.js
    -index.ios.js
    -package.json

先修改下index.android.js,將內容改成:

require("./src/app");

并把原來的index.android.js中的代碼拷貝到src/app.js中。接下來我們所有的js代碼編寫都將在src目錄下進行。另外開發過程中我們時刻要時刻關注下package server是否報錯停止,如果停止就在窗口中運行react-native start以重新啟動改服務。

自定義組件

????????reactjs之所以大受歡迎,其中一個很重要的原因就是其組件化設計思想,雖然angularjs通過指令也可以實現其組件化設計思想,但還是沒有reactjs來的優雅(原諒我有點逼格的用了這個詞匯)。RN源自于reactjs,自然也繼承了其組件化的設計。其實自定義組件本來很簡單,沒什么特別要講的,不過我這里有個特殊用途 所以就多帶帶拿出來說一下吧。
????????RN中是沒有全局字體屬性可以設置的,所以如果我們要統一設定字體屬性,還是比較麻煩的,網上也有一些方案大家可以搜搜,我這里就用一個自定義Text組件來實現全局修改字體屬性,主要就是fontSize屬性和fontFamily屬性。我們將這個組件命名為CustomText.js,存放在components目錄下。

CustomText.js

import React, { Component } from "react";
import {
    Text
} from "react-native";


class CustemText extends Component
{
    constructor(props){
        super(props);
    }
    render(){
        let styles = {
            fontSize:12,
            color:"#000"
        }
        for(let item in this.props){
            if(item !== "label"){
                styles[item] = this.props[item];
            }
        }
        return ({this.props.label})
    }
}


export default CustemText

????????在app.js中使用,請注意,如果屬性為數字或者bool值,需要寫在大括號中,比如fontSize屬性,如果為字符串,則直接書寫即可,比如color和label屬性。

...
import CustomText from "./components/CustomText";
...
export default class HelloWorld extends Component {
  render() {
    return (
    
    
    )
}
...
使用自定義字體文件

????????這里我們結合你可能會用到的矢量字體庫react-native-vector-icons來講。首先我們打開命令行,切換到項目根目錄下,輸入:

npm install --save-dev react-native-vector-icons

????????安裝完成后,請注意,需要把node_modules eact-native-vector-iconsFonts目錄下的所有字體文件拷貝到androidappsrcmainassetsfonts目錄下,如果沒有該目錄,請自行創建。所有你需要使用自定義的字體都需要拷貝到該目錄下。
使用該模塊很簡單,比如我們需要加載FontAwesome矢量字體,則這么引用:

...
import Icon from "react-native-vector-icons/FontAwesome";
...
export default class HelloWorld extends Component {
    render() {
        return (
            
        )
    }
}
...
使用本地圖片

????????使用網絡圖片比較簡單,直接引用URI地址即可,使用本地圖片則需要特別說明下,因為網上很多資料是錯誤的。引用本地圖片有2種方式:

1:根據facebook的建議,本地圖片建議放到js文件相對目錄下,比如你可以在src目錄下再建一個images目錄,然后把你的圖片放到該目錄下。引用的話比較簡單,比如你在app.js中引用images目錄下的icon.png文件,你可以這么寫:

...
import Icon from "react-native-vector-icons/FontAwesome";
...
export default class HelloWorld extends Component {
    render() {
        return (
            
        )
    }
}
...

這么做的優點就是不需要考慮不同操作系統的問題,統一進行處理。但是在打包時,根據一些朋友的反饋,在android系統下,圖片文件會被編譯到androidappsrcmain es目錄下,并且自動更名為icon_images.png,可能會導致找不到圖片,不過我編譯后沒有這個現象,也許可能是RN版本問題。
2:有代碼潔癖的人可能不愿意在js目錄中混入圖片,那可以采用這種方法。在androidappsrcmain es目錄下,新建一個drawable目錄,然后把icon.png文件拷貝到該目錄下,注意這個目錄下同名文件不同格式的文件只能有一個,比如你有了icon.png就不能再有icon.jpg了,否則會報錯。然后在代碼中引用:


請注意source的寫法,新版RN的寫法不是require("image!icon") ,而是require("icon"),不要加后綴.png。我在項目中就是使用這種方法加載本地圖片的。

使用導航控件

????????在項目中多多少少會使用導航控件,這樣界面組織比較直觀,這一節我們就來學習如何使用Navigator控件。首先需要安裝依賴模塊,命令行下切換到項目所在目錄里,運行:

npm install --save-dev react-native-tab-navigator

照著樣子寫就行,具體API請查詢官方文檔或RN中文網,這里就不再詳說了:

app.js

import React, { Component } from "react";
import {
  AppRegistry,
  Navigator,
  View
} from "react-native";
import Index from "./index";//導航首頁

export default class HelloWorld extends Component {
    render(){
        let defaultName = "Index";
        let defaultComponent = Index;        
        return (
                 {
                    Navigator.SceneConfigs.HorizontalSwipeJump.gestures=null;//不允許滑動返回
                    return Navigator.SceneConfigs.HorizontalSwipeJump;
                  }}
                  renderScene={(route, navigator) => {
                    let Component = route.component;
                    return 
                  }} />
            )    
    }
}
AppRegistry.registerComponent("HelloWorld", () => HelloWorld);

index.js

import React, { Component } from "react";
import {
    BackAndroid,
    StyleSheet,
    View,
    TouchableHighlight,
    Navigator
} from "react-native";
import TabNavigator from "react-native-tab-navigator";
import Ionicons from "react-native-vector-icons/Ionicons";
import Home from "./home";
import Find from "./find";
import User from "./user";
class Index extends Component{
    constructor(props) {
      super(props);
      this.state = {
          selectedTab:"home",
        index:0
      };
    }
    componentDidMount() {
        const { navigator } = this.props;
        //注冊點擊手機上的硬返回按鈕事件
        BackAndroid.addEventListener("hardwareBackPress", () => {         
            return this.onBackAndroid(navigator)
        });
    }
    componentWillUnmount() {
        BackAndroid.removeEventListener("hardwareBackPress");
    }  
    onBackAndroid(navigator){
        const routers = navigator.getCurrentRoutes(); 
        if (routers.length > 1) {
            navigator.pop();
            return true;
        }
        return false;
    }
    changeTab(tab){//改變導航時
        this.setState({ selectedTab:tab});
    }    
    render(){
        return (
            
                
                     }
                      renderSelectedIcon={() => }
                      selected={ this.state.selectedTab === "home" }
                      onPress={() => this.changeTab("home")}>
                                      
                    
                     }
                      renderSelectedIcon={() => }
                      selected={this.state.selectedTab=="find"}
                      onPress={() => this.changeTab("find")}
                      >
                      
                     
                     }
                      renderSelectedIcon={() => }
                      selected={this.state.selectedTab =="user"}
                      onPress={() => this.changeTab("user")}>
                        
                      
                         
            
        )
    }
}
export default Index;

然后你自己分別實現home.js,find.js以及user.js即可,這里就不再詳述了。在這里需要說明以下onPress箭頭函數(ES6語法),新版的RN用箭頭函數來執行方法,而不是this.changeTab.bind(this),用箭頭函數有個很大的好處是你不用擔心上下文中this的指向問題,它永遠指向當前的組件對象。

圖片裁剪及手勢事件的使用

????????RN中自帶的圖片處理組件CameraRoll并不好用,我這里用react-native-image-picker這個工具,同樣在命令行下運行npm install --save-dev react-native-image-picker,一般情況下會報錯,提示缺少fs依賴,所以我們要先運行npm install --save-dev fs,然后再運行npm install --save-dev react-native-image-picker。詳細的配置步驟請參考官方安裝手冊,有個特別的地方需要注意的事官方手冊沒有提到,請打開node_modules eact-native-image-pickerandroiduild.gradle文件,然后修改buildToolsVersion為你實際build tools版本。。直接上代碼,代碼比較長,我就不直接解釋了,自己慢慢看慢慢查資料吧,有什么問題可以在評論里問我。CustomButton是自定義的一個按鈕組件,代碼實現比較簡單,這里就不再貼出了。

user.js

import React, { Component } from "react";
import {
    StyleSheet,
    View,
    Image,
    TouchableOpacity,
    ToastAndroid,
    Dimensions,
    PanResponder,
    ImageEditor,
    ImageStore
} from "react-native";

import Icon from "react-native-vector-icons/FontAwesome";
import Ionicons from "react-native-vector-icons/Ionicons";
import CustomButton from "./components/CustomButton";
import ImagePicker from "react-native-image-picker";

let {height, width} = Dimensions.get("window");

class User extends Component{
    constructor(props) {
        super(props);
        this.unmounted = false;
        this.camera = null;
        this._clipWidth = 200;
        this._boxWidth = 20;
        this._maskResponder = {};
        this._previousLeft = 0;
        this._previousTop = 0;
        this._previousWidth = this._clipWidth;
        this._backStyles = {
          style: {
            left: this._previousLeft,
            top: this._previousTop
          }
        };
        this._maskStyles = {
          style: {
            left: -(width-this._clipWidth)/2,
            top: -(width-this._clipWidth)/2
          }
        };
        this.state = {
            token:null,
            username:null,
            photo:null,
            switchIsOn: true,
            uploading:false,
            uploaded:false,
            changePhoto:false,
            scale:1,
            width:0,
            height:0
        }
    }
    componentWillMount() {
        this._maskResponder = PanResponder.create({
          onStartShouldSetPanResponder: ()=>true,
          onMoveShouldSetPanResponder: ()=>true,
          onPanResponderGrant: ()=>false,
          onPanResponderMove: (e, gestureState)=>this._maskPanResponderMove(e, gestureState),
          onPanResponderRelease: (e, gestureState)=>this._maskPanResponderEnd(e, gestureState),
          onPanResponderTerminate: (e, gestureState)=>this._maskPanResponderEnd(e, gestureState),
        });
    }
    _updateNativeStyles() {
        this._maskStyles.style.left = -(width-this._clipWidth)/2+this._backStyles.style.left;
        this._maskStyles.style.top = -(width-this._clipWidth)/2+this._backStyles.style.top;
        this.refs["BACK_PHOTO"].setNativeProps(this._backStyles);
        this.refs["MASK_PHOTO"].setNativeProps(this._maskStyles);
    }
    _maskPanResponderMove(e, gestureState){
        let left = this._previousLeft + gestureState.dx;
        let top = this._previousTop + gestureState.dy;
        this._backStyles.style.left = left;
        this._backStyles.style.top = top;
        this._updateNativeStyles();
    }
    _maskPanResponderEnd(e, gestureState) {
        this._previousLeft += gestureState.dx;
        this._previousTop += gestureState.dy;
    }

    componentWillUnMount() {
        this.unmounted = true;
    }
    _saveImage(){  
        let photoURI=this.state.photo.uri;
        let left = -Math.floor(this._backStyles.style.left)+(width-this._clipWidth)/2;
        let top = -Math.floor(this._backStyles.style.top)+(width-this._clipWidth)/2;
        if(left<0 || top<0 || left+this._clipWidth>width || top+this._clipWidth>height){
            ToastAndroid.show("超出裁剪區域,請重新選擇", ToastAndroid.SHORT);
            return;
        }
        this.setState({uploading:true});
        ImageEditor.cropImage(
            photoURI,
            {offset:{x:left,y:top},size:{width:this._clipWidth, height:this._clipWidth}},
            (croppedURI)=>{
              ImageStore.getBase64ForTag(
                croppedURI,
                (base64)=>{
                    //這里即可獲得base64編碼的字符串,將此字符串上傳帶服務器處理,保存后并生成圖片地址返回即可,詳細代碼后面結合node.js再做講解。
                },
                (err)=>true
              );
            },
            (err)=>true
        );

    } 
    _fromGallery() {
        let options = {  
          storageOptions: {
            skipBackup: true,
            path: "images"
          },        
          maxWidth:width,
          mediaType: "photo", // "photo" or "video"  
          videoQuality: "high", // "low", "medium", or "high"  
          durationLimit: 10, // video recording max time in seconds  
          allowsEditing: true // 當用戶選擇過照片之后是否允許再次編輯圖片  
        }; 
        console.log(ImagePicker);
        ImagePicker.launchImageLibrary(options, (response)  => {
            if (!(response.didCancel||response.error)) { 
                Image.getSize(response.uri, (w, h)=>{
                    this.setState({ 
                        changePhoto:true,
                        photo: response,
                        width: w,
                        height: w*h/width
                    });
                    this._updateNativeStyles();
                })
            }
        });
    }
    _fromCamera() {
        let options = {  
          storageOptions: {
            skipBackup: true,
            path: "images"
          },    
          maxWidth:width,
          mediaType: "photo", // "photo" or "video"  
          videoQuality: "high", // "low", "medium", or "high"  
          durationLimit: 10, // video recording max time in seconds  
          allowsEditing: true // 當用戶選擇過照片之后是否允許再次編輯圖片  
        }; 
        ImagePicker.launchCamera(options, (response)  => {
            if (!(response.didCancel||response.error)) { 
                Image.getSize(response.uri, (w, h)=>{
                    this.setState({ 
                        changePhoto:true,
                        photo: response,
                        width:w,
                        height:w*h/width
                    });
                    this._updateNativeStyles();
                })        
            }
        });    
    }
    render() {
        let Photo,Uploading;
        if(this.state.photo){
            if(this.state.changePhoto){
                Photo=    
                        
                            
                            
                                
                            
                        
                        
            }else{
                Photo=;
            }
        }
        return (
            
                
                    
                        
                            {Photo}
                        
                    
                    {(()=> this.state.changePhoto?
                        
                            
                                
                                    this._saveImage()}/>
                                
                                
                        
                        :
                        
                            
                                
                                    this._fromGallery()}/>
                                
                                
                            
                                
                                    this._fromCamera()}/>
                                
                                
                        
                    )()}

                
            
        );
    
    }
}
var styles = StyleSheet.create({
    wrap:{
        flex:1,
        flexDirection:"column",
        backgroundColor:"whitesmoke",
        alignItems:"stretch",
        justifyContent:"center"
    },
    body:{
        flex:1,
        flexDirection:"column",
        alignItems:"stretch",
        justifyContent:"flex-start"
    },
    row:{
        flex:0,
        flexDirection:"row",
        alignItems:"center",    
        backgroundColor:"#fff"
    },
    row1:{
        flex:0,
        padding:10,
        flexDirection:"row",
        backgroundColor:"#fff",
        alignItems:"stretch",
        justifyContent:"center"
    }
});
export default User
其它

????????1:修改應用程序名稱,請修改androidappsrcmain esvaluesstrings.xm文件,然后將HelloWorld改成你喜歡的名稱,可以是中文,你安裝到手機上的應用名稱就是這里定義的。

????????2:修改應用程序名稱,請修改androidappsrcmain es下以mipmap-開頭的所有文件夾下的ic_launcher.png文件,覆蓋它即可,注意你要先刪除手機上的應用程序,然后再編譯才會生效。

????????好了,碼了這么多字,希望對大家有所幫助,喜歡的就支持下,呵呵。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/18992.html

相關文章

  • 步一開發安卓下的react-native應用系列前言

    摘要:這里是目錄一步一步開發安卓下的應用系列之環境搭建篇一步一步開發安卓下的應用系列之第一個應用一步一步開發安卓下的應用系列之進階篇怎么開發原生模塊打包分發你的實現在線升級,包括熱更新篇篇篇 ????????公司今年效益慘淡,手頭上沒什么事可作,于是琢磨著自己做點什么,想了想,如今RN那么火熱,那就整個APP出來玩玩吧。因為之前沒怎么學過reactjs,更沒有安卓系統開發經驗,所以從過完年開...

    lewif 評論0 收藏0
  • 步一開發安卓下的react-native應用系列第一個RN應用

    摘要:閉上眼睛,心中默念一百遍遍馬力馬力轟,再睜開眼,如果你是安卓及以上系統,你就能在你手機上看到你第一個應用了圖,如果是以下,嘿嘿,一個血紅血紅的界面,不過沒關系,我們來糾正它。 ????????前期準備工作已經完成,接下來將正式進入開發了,請深呼吸下,呵呵。我們首先寫個Hello World工程來練練手。????????在命令行上點右鍵,選擇以管理員身份運行。建議每次運行命令行的時候都用...

    Donald 評論0 收藏0
  • Java進階

    摘要:探索專為而設計的將探討進行了何種改進,以及這些改進背后的原因。關于最友好的文章進階前言之前就寫過一篇關于最友好的文章反響很不錯,由于那篇文章的定位就是簡單友好,因此盡可能的摒棄復雜的概念,只抓住關鍵的東西來講,以保證大家都能看懂。 周月切換日歷 一個可以進行周月切換的日歷,左右滑動的切換月份,上下滑動可以進行周,月不同的視圖切換,可以進行事件的標記,以及節假日的顯示,功能豐富 Andr...

    sushi 評論0 收藏0
  • 區塊鏈技術學習指引

    摘要:引言給迷失在如何學習區塊鏈技術的同學一個指引,區塊鏈技術是隨比特幣誕生,因此要搞明白區塊鏈技術,應該先了解下比特幣。但區塊鏈技術不單應用于比特幣,還有非常多的現實應用場景,想做區塊鏈應用開發,可進一步閱讀以太坊系列。 本文始發于深入淺出區塊鏈社區, 原文:區塊鏈技術學習指引 原文已更新,請讀者前往原文閱讀 本章的文章越來越多,本文是一個索引帖,方便找到自己感興趣的文章,你也可以使用左側...

    Cristic 評論0 收藏0

發表評論

0條評論

xioqua

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<