小编N S*_*rma的帖子

文本在Sherlock的Action Bar选项卡中显示全部大写

您好我正在使用该Sherlock库来实现ActionBarTabsAndroid,但有一些奇怪的问题,文本出现在Tabs所有大写.我不想把所有的帽子都用掉.我怎么能得到这个?

我试过这个,但这不起作用

价值观v14.xml

<style name="TariffPlansTheme" parent="Theme.Sherlock">
    <item name="actionMenuTextAppearance">@style/MyMenuTextAppearance</item>
    <item name="android:actionMenuTextAppearance">@style/MyMenuTextAppearance</item>
</style>

<style name="MyMenuTextAppearance" parent="TextAppearance.Sherlock.Widget.ActionBar.Menu">
    <item name="android:textAllCaps">false</item>
</style>
Run Code Online (Sandbox Code Playgroud)

AndroidManifest.xml中

<activity
    android:name="TariffPlansActivity"
    android:label="@string/title_activity_tariff_plans"
    android:screenOrientation="portrait" 
    android:theme="@style/TariffPlansTheme">
</activity>
Run Code Online (Sandbox Code Playgroud)

提前致谢.

android actionbarsherlock android-actionbar

0
推荐指数
1
解决办法
3841
查看次数

如何在Android中设置操作栏的标题

您好我正在使用演示应用程序,我需要ActionBar在其中心设置标题.我已经尝试了一些不适合我的SO帖子.我正在试用Android 4.3手机.

/sf/answers/1523937411/,/sf/answers/1347124341/

但没有什么对我有用.有没有办法ActionBar在Android中使用appcompat 设置中心标题?

我这样做就像下面但仍然标题在左侧.

center_action_bar_title.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="18sp" />
Run Code Online (Sandbox Code Playgroud)

在活动中

TextView customView = (TextView)
        LayoutInflater.from(getActivity()).inflate(R.layout.center_action_bar_title,
        null);

 ActionBar.LayoutParams params = new 
         ActionBar.LayoutParams(ActionBar.LayoutParams.MATCH_PARENT, 
         ActionBar.LayoutParams.MATCH_PARENT, Gravity.CENTER); 

    customView.setText(text);
((ActionBarActivity)getActivity()).getSupportActionBar().setCustomView(customView, params);
Run Code Online (Sandbox Code Playgroud)

android android-appcompat android-actionbar android-actionbar-compat

0
推荐指数
1
解决办法
5990
查看次数

如何在android中设置自动完成textview的提示

嗨,我想添加AutoCompleteTextviewin demo演示项目,我希望像我们一样设置提示EditText.

我知道这可能在EditText使用hint属性,但我不知道如何做到这一点AutoCompleteTextiview.

提前致谢.

android autocompletetextview

0
推荐指数
1
解决办法
4676
查看次数

如何在Android中将项目文本颜色设置为Spinner的白色

我正在使用我正在使用的演示应用程序Spinner并且具有类似黑色的背景颜色,因此Spinner选择的项目颜色默认为黑色,因此它不可见.

我希望通过xml或更新样式将此颜色更改为白色,以便它可以在黑色中显示.

<Spinner
    android:id="@+id/countrySpinner"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="15dp"
    android:hint="@string/country" />
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

有什么办法吗?提前致谢.

android spinner android-spinner

0
推荐指数
1
解决办法
2368
查看次数

Genymotion不会显示错误

我很难在谷歌找到这个愚蠢的问题的答案.我来自C#到android开发,在C#中,当我的应用程序崩溃时,编译器会显示我的应用程序在代码中的确切位置,我可以看到所有变量的值.

现在,我的应用程序粉碎,我不知道在哪里搜索错误.

这有可能在Android Eclipse中使用GenyMotion模拟器这种行为吗?怎么样?

android genymotion

0
推荐指数
1
解决办法
111
查看次数

如何在React JS中将数据保存在内部状态的数组中

TextFieldFlatButton里面的Dialog。我想将完整的任务列表保存在状态中定义的数组中。

this.state = {
  open: false,
  todos: [{ id: -1, text: "", completed: false }],
  notetext: ""
};
Run Code Online (Sandbox Code Playgroud)

我可以TextField从州获得文字。我想在单击时将任务保存在数组中FlatButton。我具有handleCreateNote在上附加的功能FlatButton

我不知道在数组中添加任务的方式是什么。谁能帮助我做出反应?

const AppBarTest = () =>
  <AppBar
    title={strings.app_name}
    iconClassNameRight="muidocs-icon-navigation-expand-more"
    style={{ backgroundColor: colors.blue_color }}
  />;

class App extends Component {
  constructor(props) {
    injectTapEventPlugin();
    super(props);
    this.state = {
      open: false,
      todos: [{ id: -1, text: "", completed: false }],
      notetext: ""
    };
    this.handleChange = this.handleChange.bind(this);
  }

  handleOpen = () …
Run Code Online (Sandbox Code Playgroud)

javascript reactjs

0
推荐指数
1
解决办法
4288
查看次数

TypeError:utils.requestSendSMSPermission不是一个函数

我有一个函数requestSendSMSPermissionPermissionManager这是在utils的目录。

PermissionManager.js

module.export = {
  requestSendSMSPermission: async function() {
    try {
      const granted = await PermissionsAndroid.request(
        PermissionsAndroid.PERMISSIONS.SEND_SMS
      );
      if (granted === PermissionsAndroid.RESULTS.GRANTED) {
        return true;
      } else {
        return false;
      }
    } catch (err) {
      console.warn(err);
    }
  }
};
Run Code Online (Sandbox Code Playgroud)

我已经将此导入我的组件中并尝试调用此

var utils = require("../utils/PermissionManager.js");
utils.requestSendSMSPermission()
Run Code Online (Sandbox Code Playgroud)

我遇到了错误,有人可以建议它是什么原因以及如何解决它吗?

D:\React Native\application\ui\CreateSMS.js:170 TypeError: utils.requestSendSMSPermission is not a function
    at CreateSMS._onPress (D:\React Native\application\ui\CreateSMS.js:138)
    at CreateSMS.proxiedMethod (D:\React Native\application\node_modules\react-proxy\modules\createPrototypeProxy.js:44)
    at Object.onPress (D:\React Native\application\ui\CreateSMS.js:90)
    at Object.touchableHandlePress (D:\React Native\application\node_modules\react-native\Libraries\Components\Touchable\TouchableOpacity.js:129)
    at Object._performSideEffectsForTransition (D:\React Native\application\node_modules\react-native\Libraries\Components\Touchable\Touchable.js:746)
    at Object._receiveSignal …
Run Code Online (Sandbox Code Playgroud)

javascript reactjs react-native

0
推荐指数
1
解决办法
56
查看次数

如何在android中使用rxjava2进行改造

嗨,我正在尝试学习 rxjava2。我正在尝试使用 rxjava2 调用 API,并使用改造来构建 URL 并将 JSON 转换为 Moshi。

我想将Observable模式与retrofit. 有谁知道怎么做?任何标准和最佳方法,例如用于错误处理的包装器等等?

应用模块.kt

@Provides
@Singleton
fun provideRetrofit(moshi: Moshi, okHttpClient: OkHttpClient): Retrofit {
    return Retrofit.Builder()
            .addConverterFactory(MoshiConverterFactory.create(moshi))
            .baseUrl(BuildConfig.BASE_URL)
            .client(okHttpClient)
            .build()
}
Run Code Online (Sandbox Code Playgroud)

ApiHelperImpl.kt

@Inject
lateinit var retrofit: Retrofit

override fun doServerLoginApiCall(email: String, password: String): Observable<LoginResponse> {
    retrofit.create(RestApi::class.java).login(email, password)
}
Run Code Online (Sandbox Code Playgroud)

doServerLoginApiCallLoginViewModel下面这样打电话

登录视图模型.kt

fun login(view: View) {
    if (isEmailAndPasswordValid(email, password)) {
        ApiHelperImpl().doServerLoginApiCall(email, password)
    }
}
Run Code Online (Sandbox Code Playgroud)

RestApi.kt

interface RestApi {

    @FormUrlEncoded
    @POST("/partner_login")
    fun login(@Field("email") email: String, @Field("password") password: …
Run Code Online (Sandbox Code Playgroud)

android kotlin retrofit2 rx-java2

0
推荐指数
1
解决办法
2086
查看次数

在颤动中点击警报对话框时屏幕未关闭

嗨,我设计了一个颤动的屏幕。我AlertDialog想在按下时关闭对话框和屏幕。现在AlertDialog按下关闭,但屏幕没有关闭。

有谁知道如何做到这一点 ?

class ForgotPasswordScreen extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    return ForgotPasswordScreenState();
  }
}

class ForgotPasswordScreenState extends State<ForgotPasswordScreen> {
  var emailController = new TextEditingController();
  var authHandler = new Auth();
  bool isLoading = false;

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
        body: Container(
            height: MediaQuery.of(context).size.height,
            decoration: BoxDecoration(
              color: Colors.white,
            ),
            child: new Column(
              crossAxisAlignment: CrossAxisAlignment.center,
              mainAxisSize: MainAxisSize.max,
              mainAxisAlignment: MainAxisAlignment.center,
              children: <Widget>[
                new Row(
                  children: <Widget>[
                    new Expanded(
                        child: isLoading
                            ? Center(child: CircularProgressIndicator())
                            : new …
Run Code Online (Sandbox Code Playgroud)

android ios flutter

0
推荐指数
1
解决办法
4132
查看次数

Chatbots中的人工智能

我正在聊天机器人,机器人将与客户互动.我想构建一个智能的,类似AI的机器人.

我做了一点但我很感激有关改进的建议.

如果客户输入:

A) I want to know the cost of XXX car.
B) Send me the price of car XXX.
C) What is the cost of XXX car?
D) Specifications of XXX car
Run Code Online (Sandbox Code Playgroud)

我如何建立一个机器人,以便它可以恢复这些答案?如果我匹配一个完整的句子,那么它将无法工作.

我的客户可以写任何东西,可以提问.请问,有人可以帮助确保机器人能够理解同一查询的不同用法吗?

提前致谢.

nlp artificial-intelligence bots machine-learning

-8
推荐指数
1
解决办法
689
查看次数