小编Abd*_*cin的帖子

支持UTF-8(土耳其语)字符的Google网络字体?

有谁知道,哪些字体支持土耳其字符没有问题?Sans或Serif无所谓.

示例:İÜÇÖÖ...

在此输入图像描述

在此输入图像描述

webfonts google-webfonts

11
推荐指数
2
解决办法
2万
查看次数

找不到类'android.support.v4.widget.SwipeRefreshLayout'

我一直收到这个错误,这导致我的应用程序崩溃.尝试实现新的v4滑动刷新布局.我更新了支持库+ sdk.有什么问题?

找不到类'android.support.v4.widget.SwipeRefreshLayout',引用方法...... onCreate

import android.support.v4.widget.SwipeRefreshLayout;
...
private SwipeRefreshLayout swipeLayout;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.home_page_list);
swipeLayout = (SwipeRefreshLayout) findViewById(R.id.container);
    swipeLayout.setColorScheme(android.R.color.holo_blue_bright, 
            android.R.color.holo_green_light, 
            android.R.color.holo_orange_light, 
            android.R.color.holo_red_light);
    swipeLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
        @Override
        public void onRefresh() {
            swipeLayout.setRefreshing(false);
        }
    });
Run Code Online (Sandbox Code Playgroud)

XML

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.devrim.ythaber.HomeActivity"
tools:ignore="MergeRootFrame" >

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <ImageView
            android:id="@+id/thumb"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:contentDescription="@string/app_name" />

        <RelativeLayout
            android:id="@+id/relativeLayout1"
            android:layout_width="wrap_content"
            android:layout_height="290dp"
            android:layout_centerVertical="true"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:orientation="vertical" >

            <!-- android:layout_toRightOf="@+id/thumb" -->

        </RelativeLayout>

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="left" …
Run Code Online (Sandbox Code Playgroud)

java android

6
推荐指数
2
解决办法
1万
查看次数

SyntaxError:意外的令牌[ - 离子

我正试图开始我的第一个离子应用程序; 在每个离子命令上获取'SyntaxError:Unexpected token ['.字面上所有离子命令返回相同的输出.

$ ionic start test --v2

/Users/user/.nvm/versions/node/v4.1.1/lib/node_modules/ionic/dist/index.js:24
        const [xcode, iosDeploy, iosSim,] = yield Promise.all([
              ^

SyntaxError: Unexpected token [
    at exports.runInThisContext (vm.js:53:16)
    at Module._compile (module.js:413:25)
    at Object.Module._extensions..js (module.js:452:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (/Users/user/.nvm/versions/node/v4.1.1/lib/node_modules/ionic/bin/ionic:8:11)
    at Module._compile (module.js:434:26)
    at Object.Module._extensions..js (module.js:452:10)
Run Code Online (Sandbox Code Playgroud)

NPM:4.5.0

操作系统:OSX Sierra

npm ionic-framework

6
推荐指数
1
解决办法
2059
查看次数

React-native - TextInput 小数点在 iOS 上显示逗号而不是点

某些 iOS 设备似乎在小数点上显示,(逗号)而不是 a .。我相信这与键盘语言/语言环境有关。有没有一种方法可以强制无论键盘语言/语言环境如何都decimal-pad显示.

<TextInput
    rejectResponderTermination={false}
    style={[
        {
            fontSize: entryValueFontSize,
            height: height,
        },
        calculatorStyles.inputsShared,
        calculatorStyles.amountInput,
        theme.inputsShared,
    ]}
    autoCapitalize={'none'}
    placeholder={entryValueLabel}
    placeholderTextColor={theme.placeholderTextColor}
    keyboardType={'decimal-pad'}
    returnKeyType={'done'}
    defaultValue={''}
    value={isNaN(this.state.entryValue) ? '' : this.state.entryValue}
    onChangeText={(entryValue) => {
        this.onEntryValueChange(entryValue);
    }}
/>
Run Code Online (Sandbox Code Playgroud)

问题:

在此处输入图片说明

期望的输出:

在此处输入图片说明

react-native react-native-textinput

6
推荐指数
1
解决办法
539
查看次数

javascript - 使用行号捕获控制台

捕获控制台时如何捕获日志的行号? (仅限 Chrome - 其他浏览器与我无关)

我有以下内容来捕获所有日志;

consoleLogs: [],

init: function(){
    app.captureConsole();
},

captureConsole: function(){
    var _log = console.log;

    console.log = function() {
        app.consoleLogs.push(JSON.stringify({method: 'log', args: arguments}));
        return _log.apply(console, arguments); // <-- line number 123 [e.g.]
    };
},
Run Code Online (Sandbox Code Playgroud)

当控制台返回时,所有控制台的行号如预期的那样是 123 - 这并不重要。我想要的是能够将原始控制台日志号推送到我的阵列。

这是一个 nw.js 应用程序,因此 chrome api / nw api 会很棒 [如果存在]

javascript console.log nw.js nwjs

5
推荐指数
1
解决办法
1471
查看次数