我无法在底部导航中更改非活动颜色
这是我的xml
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/home_item"
android:icon="@drawable/ic_home"
android:color="#FFFFFF"
android:tint="#FFFFFF"
android:backgroundTint="#FFFFFF"
android:title="Home"
/>
<item
android:id="@+id/setting_item"
android:icon="@drawable/ic_setting"
android:color="#FFFFFF"
android:tint="#FFFFFF"
android:backgroundTint="#FFFFFF"
android:title="Setting"
/>
Run Code Online (Sandbox Code Playgroud)
这是我的java
bottomBar.getBar().setBackgroundColor(getResources().getColor(R.color.bottom_tabs));
bottomBar.setActiveTabColor("#FFFFFE");
Run Code Online (Sandbox Code Playgroud)
谁有人可以帮忙?
我正在尝试在 android 中重现 IOS UIPickerView 功能。
在 IOS 中,您可以将此 UIPickerView 设置为键盘的输入类型。我需要这种相同类型的交互,但在 android 中。
更新:当我说输入类型时,我的意思是 UIPickerView 只是替换了键盘视图。因此,如果单击文本字段,UIPickerView 将打开而不是键盘。希望能解决问题!
我目前的Zxing扫描仪屏幕看起来像这样, 在此处输入图像描述
我想添加一个textview和几个按钮,我已经尝试了很多程序,但没有任何工作可以任何人指导我,我会谦卑地期待你的帮助
继承守守则
Java文件:
private ZXingScannerView mScannerView;
@Override
public void onCreate(Bundle state) {
super.onCreate(state);
setContentView(R.layout.activity_qrresult);
mScannerView = new ZXingScannerView(this);
setContentView(mScannerView);
}
@Override
public void onResume() {
super.onResume();
mScannerView.setResultHandler(this);
mScannerView.startCamera();
Toast.makeText(getApplicationContext(),"Scan QR code to Send
Money",Toast.LENGTH_LONG).show();
}
@Override
public void onPause() {
super.onPause();
mScannerView.stopCamera(); // Stop camera on pause
}
@Override
public void handleResult(Result rawResult) {
// Do something with the result here
if(rawResult.getText().toString().equals("Test Ewallet Test")){
Toast.makeText(getApplicationContext(), rawResult.getText(),
Toast.LENGTH_SHORT).show();
Intent go = new Intent(qrresult.this,sendmoney.class);
startActivity(go);
}else {
Toast.makeText(getApplicationContext(), "Couldn't scan …Run Code Online (Sandbox Code Playgroud)