小编Sau*_*abh的帖子

依赖org.apache.httpcomponents:httpclient:4.4.1因发布而被忽略,因为它可能与Android提供的内部版本冲突

我在我的项目中使用httpmime和httpcore,我收到了这个警告

警告:依赖org.apache.httpcomponents:httpclient:4.4.1因调试而被忽略,因为它可能与Android提供的内部版本冲突.

警告:依赖org.apache.httpcomponents:httpclient:4.4.1因调试而被忽略,因为它可能与Android提供的内部版本冲突.

我的依赖关系看起来像这样

dependencies {    
    compile files('libs/gson-2.2.2.jar')
    compile files('libs/classes.jar')
    compile files('libs/gcm.jar')
    compile files('libs/splunk-mint-4.2.jar')
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'org.apache.httpcomponents:httpcore:4.4.1'
    compile 'org.apache.httpcomponents:httpmime:4.4.1'}
Run Code Online (Sandbox Code Playgroud)

正如在其他地方所建议的那样,我将它添加到我的build.gradle文件中

packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'}
Run Code Online (Sandbox Code Playgroud)

不知道如何解决这个问题?

android android-studio

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

Spinner下拉Nexus 5中的弹出位置变化(android 5.0)

我在我的应用程序中使用Spinner.我使用了基本的微调器,这是我的代码:`

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    style="@style/SpinnerSpinnerTheme"
    android:spinnerMode="dropdown"
    android:layout_gravity="center_vertical"
    android:id="@+id/hj_order_date_spinner"
    />`
Run Code Online (Sandbox Code Playgroud)

这就是我在我的活动中实例化的方式

 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,R.array.hj_spinner_items,android.R.layout.simple_spinner_item);
   adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    dateSpinner.setPrompt("Sort By");
    dateSpinner.setAdapter(adapter);
Run Code Online (Sandbox Code Playgroud)

这在android 4.4.4中运行良好,但在Nexus 5(使用Lollipop)下拉列表/ Popup更改它的位置并隐藏"Sort By"栏或原始微调器.任何人都可以提供任何有关问题的见解吗?

android android-spinner

3
推荐指数
1
解决办法
4076
查看次数

未定义不是对象(评估'context.uiTheme.toolbar')('react-native-material-ui')

我正在尝试使用react-native-material-ui库的工具栏.但是我在这个过程中不断收到一个错误.我已经被困在这个很长一段时间了.我index.android.js看起来像这样:

import React, { Component } from 'react';
import { StyleSheet,AppRegistry, View } from 'react-native';
import { Toolbar } from './node_modules/react-native-material-ui';


const styles = StyleSheet.create({
pageContainer: {
    flex: 1,
},
});


export default class Reminder_react extends Component {
   render() {
    return (
        <View style={styles.pageContainer}>
            <Toolbar leftElement="arrow-back" centerElement="Icon Toggle" />

        </View>
    );
   }
}
AppRegistry.registerComponent('Reminder_react', () => Reminder_react);
Run Code Online (Sandbox Code Playgroud)

终端没有出现任何错误,但手机屏幕亮起红灯区.这是错误.

反应原生错误堆栈

android react-native react-native-android

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