-
双卡项目如何在状态栏显示或隐藏G,3G以及卡1和卡2的信号标识
2016-06-16 17:39:471.KK版本上(4.4)如何隐藏有SIM卡1,2标记,如何去掉状态栏G、3G图标 2.L版本上(5.0)如何增加有SIM卡1,2标记 3.特别的,目前M版本不支持该功能。 一 KK版本上(4.4) 1.1如何隐藏有SIM卡1,2标记 KK上默认是...1.KK版本上(4.4)如何隐藏有SIM卡1,2标记,如何去掉状态栏G、3G图标2.L版本上(5.0)如何增加有SIM卡1,2标记3.特别的,目前M版本不支持该功能。一 KK版本上(4.4)
1、如何隐藏有SIM卡1,2标记
KK上默认是显示1,2卡标识的。
如果隐藏它们,在文件SignalClusterView.java上由mMobileSlotIndicator变量控制
将mMobileSlotIndicator出现的地方屏蔽掉就可以
2、如何去掉状态栏G、3G图标
去掉方法很简单,就是把这个View隐藏就行了,具体修改如下
SignalClusterView.java (frameworks\base\packages\SystemUI\src\com\android\systemui\statusbar)apply():
……
//hide network icon begin
/* int state = SIMHelper.getSimIndicatorStateGemini(i);//hide network icon
if (!mIsAirplaneMode
&& SIMHelper.isSimInserted(i)
&& PhoneConstants.SIM_INDICATOR_LOCKED != state
&& PhoneConstants.SIM_INDICATOR_SEARCHING != state
&& PhoneConstants.SIM_INDICATOR_INVALID != state
&& PhoneConstants.SIM_INDICATOR_RADIOOFF != state) {
……
} else {*/
mSignalNetworkType[i].setImageDrawable(null);
mSignalNetworkType[i].setVisibility(View.GONE);
//}
//hide network icon end
……
二 L版本上(5.0)如何增加有SIM卡1,2标记
L版本5.0默认是没有显示的1.2卡标识的!
如果要增加1,2标识,可按下面步骤添加:
1、Signal_Cluster_View.xml<!-- M: Support "Default SIM Indicator". }@ -->
<LinearLayout
android:id="@+id/signal_cluster_combo"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
>
<View
android:layout_height="6dp"
android:layout_width="6dp"
android:visibility="invisible"
/>
<!-- M: Support "Service Network Type on Statusbar". @{ -->
<ImageView
android:id="@+id/network_type"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:visibility="gone"
/>
<!-- M: Support "Service Network Type on Statusbar". }@ -->
<FrameLayout
android:id="@+id/mobile_combo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/mobile_signal"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<ImageView
android:id="@+id/mobile_type"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<!-- add :mobile_slot_indicateor". }@ -->
<ImageView
android:id="@+id/mobile_slot_indicator"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</FrameLayout>
</LinearLayout><!-- the 2nd sim card start -->
<View
android:layout_height="1dp"
android:layout_width="1dp"
android:tag="spacer_2"
android:visibility="gone"
android:id="@+id/spacer_2"
/>
<View
android:layout_height="1dp"
android:layout_width="1dp"
android:visibility="invisible"
/>
<LinearLayout
android:id="@+id/signal_cluster_combo_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:tag="signal_cluster_combo_2"
>
<!-- M: Support "Service Network Type on Statusbar". @{ -->
<ImageView
android:id="@+id/network_type_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:visibility="gone"
android:tag="network_type_2"
/>
<!-- M: Support "Service Network Type on Statusbar". }@ -->
<FrameLayout
android:id="@+id/mobile_combo_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="mobile_combo_2"
>
<ImageView
android:id="@+id/mobile_signal_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:tag="mobile_signal_2"
/>
<ImageView
android:id="@+id/mobile_type_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:tag="mobile_type_2"
/>
<!-- add :mobile_slot_indicateor". }@ -->
<ImageView
android:id="@+id/mobile_slot_indicator_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</FrameLayout>
</LinearLayout>
<!-- the 2nd sim card end -->2、SignalClusterView.java
文件添加// add
private ImageView[] mMobileSlotIndicator;
//add
int[] slots_indicators=new int[]{R.drawable.sim1_indicator,R.drawable.sim2_indicator};
// 图片sim1_indicator,sim2_indicator是你制作的sim1,sim2标识
public SignalClusterView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
mSlotCount = SIMHelper.getSlotCount();
........
// add
mMobileSlotIndicator= new ImageView[mSlotCount];
}onAttachedToWindow()那里
//add
for (int i = SIMHelper.SLOT_INDEX_DEFAULT ; i < mSlotCount; i++) {
final int k = i + 1;
if (i == SIMHelper.SLOT_INDEX_DEFAULT) {
// load views for first SIM card
mMobile[i] = (ImageView) findViewById(R.id.mobile_signal);
mMobileGroup[i] = (ViewGroup) findViewById(R.id.mobile_combo);
mMobileType[i] = (ImageView) findViewById(R.id.mobile_type);
mSpacer[i] = findViewById(R.id.spacer);
mSignalClusterCombo[i] = (ViewGroup) findViewById(R.id.signal_cluster_combo);
/// M: Support "Service Network Type on Statusbar"
mSignalNetworkType[i] = (ImageView) findViewById(R.id.network_type);//tdp add
mMobileSlotIndicator[i] = (ImageView) findViewById(R.id.mobile_slot_indicator);
} else {
mMobile[i] = (ImageView) findViewWithTag("mobile_signal_" + k);
mMobileGroup[i] = (ViewGroup) findViewWithTag("mobile_combo_" + k);
mMobileType[i] = (ImageView) findViewWithTag("mobile_type_" + k);
mSpacer[i] = findViewWithTag("spacer_" + k);
mSignalClusterCombo[i] = (ViewGroup) findViewWithTag("signal_cluster_combo_" + k);
/// M: Support "Service Network Type on Statusbar"
mSignalNetworkType[i] = (ImageView) findViewWithTag("network_type_" + k);//tdp add
mMobileSlotIndicator[i] = (ImageView) findViewWithTag("mobile_slot_indicator_"+k);
}
//add
mMobileSlotIndicator[i].setImageDrawable(slots_indicators[i]);
mMobileSlotIndicator[i].setVisibility(View.VISIBLE);
}
onDetachedFromWindow()那里
//add
@Override
protected void onDetachedFromWindow() {
mVpn = null;
mWifiGroup = null;
mWifi = null;
/// M: WifiActivityIcon
mWifiActivity = null;for (int i = SIMHelper.SLOT_INDEX_DEFAULT; i < mSlotCount ; i++) {
mMobileGroup[i] = null;
mMobile[i] = null;
mMobileType[i] = null;
mSpacer[i] = null;
//add
mMobileSlotIndicator[i] = null;
} -
[FAQ04679]双卡项目如何在状态栏显示或隐藏G,3G以及卡1和卡2的信号标识
2016-10-26 10:27:001.KK版本上(4.4)如何隐藏有SIM卡1,2标记,如何去掉状态栏G、3G图标 2.L版本上(5.0)如何增加有SIM卡1,2标记 3,特别的,目前M版本不支持该功能。 一 KK版本上(4.4) 2.1如何隐藏有SIM卡1,2标记 KK上默认是...[DESCRIPTION]本节包括2个方面:1.KK版本上(4.4)如何隐藏有SIM卡1,2标记,如何去掉状态栏G、3G图标2.L版本上(5.0)如何增加有SIM卡1,2标记3,特别的,目前M版本不支持该功能。一 KK版本上(4.4)2.1如何隐藏有SIM卡1,2标记
KK上默认是显示1,2卡标识的。
如果隐藏它们,在文件SignalClusterView.java上由mMobileSlotIndicator变量控制
将mMobileSlotIndicator出现的地方屏蔽掉就可以
2.2 如何去掉状态栏G、3G图标
去掉方法很简单,就是把这个View隐藏就行了,具体修改如下
SignalClusterView.java(frameworks\base\packages\SystemUI\src\com\android\systemui\statusbar)
apply():
……
//hide network icon begin
/* int state = SIMHelper.getSimIndicatorStateGemini(i);//hide network icon
if (!mIsAirplaneMode
&& SIMHelper.isSimInserted(i)
&& PhoneConstants.SIM_INDICATOR_LOCKED != state
&& PhoneConstants.SIM_INDICATOR_SEARCHING != state
&& PhoneConstants.SIM_INDICATOR_INVALID != state
&& PhoneConstants.SIM_INDICATOR_RADIOOFF != state) {
……
} else {*/
mSignalNetworkType[i].setImageDrawable(null);
mSignalNetworkType[i].setVisibility(View.GONE);
//}
//hide network icon end
……
二 L版本上(5.0)如何增加有SIM卡1,2标记
L版本5.0默认是没有显示的1.2卡标识的!
如果要增加1,2标识,可按下面步骤添加:
1,Signal_Cluster_View.xml<!-- M: Support "Default SIM Indicator". }@ -->
<LinearLayout
android:id="@+id/signal_cluster_combo"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
>
<View
android:layout_height="6dp"
android:layout_width="6dp"
android:visibility="invisible"
/>
<!-- M: Support "Service Network Type on Statusbar". @{ -->
<ImageView
android:id="@+id/network_type"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:visibility="gone"
/>
<!-- M: Support "Service Network Type on Statusbar". }@ -->
<FrameLayout
android:id="@+id/mobile_combo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/mobile_signal"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<ImageView
android:id="@+id/mobile_type"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<!-- add :mobile_slot_indicateor". }@ -->
<ImageView
android:id="@+id/mobile_slot_indicator"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</FrameLayout>
</LinearLayout><!-- the 2nd sim card start -->
<View
android:layout_height="1dp"
android:layout_width="1dp"
android:tag="spacer_2"
android:visibility="gone"
android:id="@+id/spacer_2"
/>
<View
android:layout_height="1dp"
android:layout_width="1dp"
android:visibility="invisible"
/>
<LinearLayout
android:id="@+id/signal_cluster_combo_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:tag="signal_cluster_combo_2"
>
<!-- M: Support "Service Network Type on Statusbar". @{ -->
<ImageView
android:id="@+id/network_type_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:visibility="gone"
android:tag="network_type_2"
/>
<!-- M: Support "Service Network Type on Statusbar". }@ -->
<FrameLayout
android:id="@+id/mobile_combo_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="mobile_combo_2"
>
<ImageView
android:id="@+id/mobile_signal_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:tag="mobile_signal_2"
/>
<ImageView
android:id="@+id/mobile_type_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:tag="mobile_type_2"
/>
<!-- add :mobile_slot_indicateor". }@ -->
<ImageView
android:id="@+id/mobile_slot_indicator_2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</FrameLayout>
</LinearLayout>
<!-- the 2nd sim card end -->2.SignalClusterView.java
文件添加// add
private ImageView[] mMobileSlotIndicator;
//add
int[] slots_indicators=new int[]{R.drawable.sim1_indicator,R.drawable.sim2_indicator};
// 图片sim1_indicator,sim2_indicator是你制作的sim1,sim2标识
public SignalClusterView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
mSlotCount = SIMHelper.getSlotCount();
........
// add
mMobileSlotIndicator= new ImageView[mSlotCount];
}onAttachedToWindow()那里
//add
for (int i = SIMHelper.SLOT_INDEX_DEFAULT ; i < mSlotCount; i++) {
final int k = i + 1;
if (i == SIMHelper.SLOT_INDEX_DEFAULT) {
// load views for first SIM card
mMobile[i] = (ImageView) findViewById(R.id.mobile_signal);
mMobileGroup[i] = (ViewGroup) findViewById(R.id.mobile_combo);
mMobileType[i] = (ImageView) findViewById(R.id.mobile_type);
mSpacer[i] = findViewById(R.id.spacer);
mSignalClusterCombo[i] = (ViewGroup) findViewById(R.id.signal_cluster_combo);
/// M: Support "Service Network Type on Statusbar"
mSignalNetworkType[i] = (ImageView) findViewById(R.id.network_type);//tdp add
mMobileSlotIndicator[i] = (ImageView) findViewById(R.id.mobile_slot_indicator);
} else {
mMobile[i] = (ImageView) findViewWithTag("mobile_signal_" + k);
mMobileGroup[i] = (ViewGroup) findViewWithTag("mobile_combo_" + k);
mMobileType[i] = (ImageView) findViewWithTag("mobile_type_" + k);
mSpacer[i] = findViewWithTag("spacer_" + k);
mSignalClusterCombo[i] = (ViewGroup) findViewWithTag("signal_cluster_combo_" + k);
/// M: Support "Service Network Type on Statusbar"
mSignalNetworkType[i] = (ImageView) findViewWithTag("network_type_" + k);//tdp add
mMobileSlotIndicator[i] = (ImageView) findViewWithTag("mobile_slot_indicator_"+k);
}
//add
mMobileSlotIndicator[i].setImageDrawable(slots_indicators[i]);
mMobileSlotIndicator[i].setVisibility(View.VISIBLE);
}
onDetachedFromWindow()那里
//add
@Override
protected void onDetachedFromWindow() {
mVpn = null;
mWifiGroup = null;
mWifi = null;
/// M: WifiActivityIcon
mWifiActivity = null;for (int i = SIMHelper.SLOT_INDEX_DEFAULT; i < mSlotCount ; i++) {
mMobileGroup[i] = null;
mMobile[i] = null;
mMobileType[i] = null;
mSpacer[i] = null;
//add
mMobileSlotIndicator[i] = null;
}android5.1(即L1)版本添加sim1,sim2标识。[SOLUTION]L1添加sim1,sim2标识
添加方法如下:关注add
1,mobile_signal_group.xml
.....
<FrameLayout
android:id="@+id/mobile_combo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/mobile_signal"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<ImageView
android:id="@+id/mobile_type"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<!-- add :mobile_slot_indicateor". }@ -->
<ImageView
android:id="@+id/mobile_slot_indicator"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</FrameLayout>
2,SignalClusterView.java
//add
int mIndicatorSlot=0;//add end
private ArrayList<PhoneState> mPhoneStates = new ArrayList<PhoneState>();
//add
int[] slots_indicators=new int[]{R.drawable.sim1_indicator,R.drawable.sim2_indicator};
// 图片sim1_indicator,sim2_indicator是你制作的sim1,sim2标识
//add end
@Override
public void setSubs(List<SubscriptionInfo> subs) {
Xlog.d(TAG, "setSubs(), subs= " + subs);
// Clear out all old subIds.
mPhoneStates.clear();
if (mMobileSignalGroup != null) {
mMobileSignalGroup.removeAllViews();
}
final int n = subs.size();
for (int i = 0; i < n; i++) {
//add
mIndicatorSlot=subs.get(i).getSimSlotIndex();
//add end
inflatePhoneState(subs.get(i).getSubscriptionId());
}
private PhoneState inflatePhoneState(int subId) {
PhoneState state = new PhoneState(subId, mContext);
//add
state.mSlotIndicator=mIndicatorSlot;
//add end
if (mMobileSignalGroup != null) {
mMobileSignalGroup.addView(state.mMobileGroup);
}
mPhoneStates.add(state);
return state;
}
private class PhoneState {
private final int mSubId;
private boolean mMobileVisible = false;
private int mMobileStrengthId = 0, mMobileTypeId = 0;
private boolean mIsMobileTypeIconWide;
private String mMobileDescription, mMobileTypeDescription;
private ViewGroup mMobileGroup;
//add
private ImageView mMobile, mMobileType,mMobileSlotIndicator;// add mMobileSlotIndicator
//add
private int mSlotIndicator;
public void setViews(ViewGroup root) {
mMobileGroup = root;
mMobile = (ImageView) root.findViewById(R.id.mobile_signal);
mMobileType = (ImageView) root.findViewById(R.id.mobile_type);
/// M: Support "Service Network Type on Statusbar".
mSignalNetworkType = (ImageView) root.findViewById(R.id.network_type);
// add
mMobileSlotIndicator= (ImageView) root.findViewById(R.id.mobile_slot_indicator);//add end
}
public boolean apply(boolean isSecondaryIcon) {
Xlog.d(TAG, "apply(" + mSubId + ")," + " mMobileVisible= " + mMobileVisible +
", mIsAirplaneMode= " + mIsAirplaneMode);
if (mMobileVisible && !mIsAirplaneMode) {
mMobile.setImageResource(mMobileStrengthId);
mMobileType.setImageResource(mMobileTypeId);
mMobileGroup.setContentDescription(mMobileTypeDescription
+ " " + mMobileDescription);
mMobileGroup.setVisibility(View.VISIBLE);
//add
mMobileSlotIndicator.setImageResource(slots_indicators[mSlotIndicator]);
//add end
} else {
mMobileGroup.setVisibility(View.GONE);
}
本次针对的是android5.1(即L1)版本添加sim1,sim2标识。[SOLUTION]L1添加sim1,sim2标识
添加方法如下:关注add
1,mobile_signal_group.xml
.....
<FrameLayout
android:id="@+id/mobile_combo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/mobile_signal"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<ImageView
android:id="@+id/mobile_type"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<!-- add :mobile_slot_indicateor". }@ -->
<ImageView
android:id="@+id/mobile_slot_indicator"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</FrameLayout>
2,SignalClusterView.java
//add
int mIndicatorSlot=0;//add end
private ArrayList<PhoneState> mPhoneStates = new ArrayList<PhoneState>();
//add
int[] slots_indicators=new int[]{R.drawable.sim1_indicator,R.drawable.sim2_indicator};
// 图片sim1_indicator,sim2_indicator是你制作的sim1,sim2标识
//add end
@Override
public void setSubs(List<SubscriptionInfo> subs) {
Xlog.d(TAG, "setSubs(), subs= " + subs);
// Clear out all old subIds.
mPhoneStates.clear();
if (mMobileSignalGroup != null) {
mMobileSignalGroup.removeAllViews();
}
final int n = subs.size();
for (int i = 0; i < n; i++) {
//add
mIndicatorSlot=subs.get(i).getSimSlotIndex();
//add end
inflatePhoneState(subs.get(i).getSubscriptionId());
}
private PhoneState inflatePhoneState(int subId) {
PhoneState state = new PhoneState(subId, mContext);
//add
state.mSlotIndicator=mIndicatorSlot;
//add end
if (mMobileSignalGroup != null) {
mMobileSignalGroup.addView(state.mMobileGroup);
}
mPhoneStates.add(state);
return state;
}
private class PhoneState {
private final int mSubId;
private boolean mMobileVisible = false;
private int mMobileStrengthId = 0, mMobileTypeId = 0;
private boolean mIsMobileTypeIconWide;
private String mMobileDescription, mMobileTypeDescription;
private ViewGroup mMobileGroup;
//add
private ImageView mMobile, mMobileType,mMobileSlotIndicator;// add mMobileSlotIndicator
//add
private int mSlotIndicator;
public void setViews(ViewGroup root) {
mMobileGroup = root;
mMobile = (ImageView) root.findViewById(R.id.mobile_signal);
mMobileType = (ImageView) root.findViewById(R.id.mobile_type);
/// M: Support "Service Network Type on Statusbar".
mSignalNetworkType = (ImageView) root.findViewById(R.id.network_type);
// add
mMobileSlotIndicator= (ImageView) root.findViewById(R.id.mobile_slot_indicator);//add end
}
public boolean apply(boolean isSecondaryIcon) {
Xlog.d(TAG, "apply(" + mSubId + ")," + " mMobileVisible= " + mMobileVisible +
", mIsAirplaneMode= " + mIsAirplaneMode);
if (mMobileVisible && !mIsAirplaneMode) {
mMobile.setImageResource(mMobileStrengthId);
mMobileType.setImageResource(mMobileTypeId);
mMobileGroup.setContentDescription(mMobileTypeDescription
+ " " + mMobileDescription);
mMobileGroup.setVisibility(View.VISIBLE);
//add
mMobileSlotIndicator.setImageResource(slots_indicators[mSlotIndicator]);
//add end
} else {
mMobileGroup.setVisibility(View.GONE);
} -
古董笔记本伪装成双核 1G内存 120G硬盘
2007-08-02 17:39:00但是后感觉就是上当了,打开一看.windowsXP的启动界面,到登录的时候,变成98了,进去后明显的是98的界面,只是所有标识的地方都换成XP了,而且系统信息改为双核 1G内存 120G硬盘 ,同时注册表锁住了,慢的要死.只有一个USB朋友送来一个电脑,说慢的不行,配置是 双核 1G内存 120G硬盘
拿过来一看,感觉很旧,朋友说朋友的朋友(某人)买的,花了几百块,卖的人说是透的.
但是后感觉就是上当了,打开一看.windowsXP的启动界面,到登录的时候,变成98了,进去后明显的是98的界面,只是所有标识的地方都换成XP了,而且系统信息改为双核 1G内存 120G硬盘 ,同时注册表锁住了,慢的要死.
只有一个USB口可以输入数据98不认,没有网卡,没有光驱,没有软盘 是东芝98年前的产品 3380V,超薄商务系列
这怎么弄?想了半天,只有把硬盘拆出来,接到移动硬盘上才能搞定,拆!
-
双翌ICP-W-7010G-2C系列控制器说明
2021-01-26 17:23:50一、使用U盘启动 通过按键“F7”自己设置启动顺序【F7按键为启动顺序菜单选择】。...Fig.1"Chipset"标识框 "PCH-IOConfiguration"进入此选项中设置,来电自动启动电脑选项: 来电自启动...一、使用U盘启动
通过按键“F7”自己设置启动顺序【F7按键为启动顺序菜单选择】。
选择从U盘启动 进入PE系统,方便我们后续的操作系统安装。
二、驱动程序安装方式
驱动程序文件夹 一般安装驱动程序的顺序如下所示:
安装驱动程序的顺序一般如上图所示。
三、上电自启动设定
开机启动按“DEL”按键可进入BIOS
Fig.1"Chipset"标识框 "PCH-IOConfiguration"进入此选项中设置,来电自动启动电脑选项:
来电自启动选项
"选中System State After Power Failure "选项,设置为“Power On”,设置此选项的目的为电源开启后,电脑自动启动。
-
双翌ICP-W-5020G-2C系列控制器说明
2021-01-19 16:38:40一、使用U盘启动 通过按键“F11”自己设置启动顺序【F11按键为启动顺序菜单选择】。 选择从U盘启动 ...Fig.1"Power"标识框 来电自启动选项 "选中AC Back Function "选项,设置为“Power On”... -
oracle中的单引号和双引号介绍
2010-11-19 16:52:00oracle中的单引号和双引号介绍双引号 标识列,单引号 标识字符串在Oracle中: 双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意 Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则... -
oracle 单引号 双引号
2013-10-26 21:00:31双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意 Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则示意:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单... -
Oracle中的 单引号 和 双引号
2017-11-07 13:59:00双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则示意:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单引号用于... -
oracle中的单引号和双引号
2013-09-11 15:55:42双引号的作用是:如果创建对象的时候,对象名、字段名加双引号,则表示Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则表示:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单引号... -
Oracle中的 单引号 和 双引号
2011-10-18 09:17:17双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意 Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则示意:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单引号... -
Oracle中的 单引号 和 双引号【待整理】
2014-03-26 09:53:27双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意 Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则示意:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单... -
Oracle中的 单引号 和 双引号(转)
2011-07-30 09:45:13双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意 Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则示意:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单... -
Oracle Database 9i10g11g编程艺术:深入数据库体系结构(第2版)--详细书签版
2013-02-03 11:42:53要想学习和掌握它的诸多新特性,只能从Oracle手册入手,而数万页的11g手册不免让人心存畏惧,从中挑出对新特性的描述更需要一双“火眼金睛”。 好消息!在本书第1版出版时隔4年后,Thomas Kyte及时了解了大家的这... -
钠分子2
2021-03-05 03:13:46通过比较园偏振和线偏振两种激发方式下,钠分子的等频双光子跃迁谱线的强度变化和23Ⅱg→α3∑+u辐射谱的数值拟合计算,对23Ⅱg←X1∑+g的双光子跃迁进行了标识. -
xt800区别思路
2011-06-23 21:49:00通过手机发送短信时,程序实现,区分选择使用不同的网络(C网或G网)通道——乱想:如何枚举出2张卡是否都可用,且区分出C网和网,发送短信是如何,设置标识,分别从不同的通道出去。 答: 我和moto 的沟通过了,... -
oracle单双引号
2016-06-30 10:06:52双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则示意:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单... -
oracle中单引号的应用
2016-01-13 14:44:21双引号的作用是:假如建立对象的时候,对象名、字段名加双引号,则示意Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则示意:这个加了单引号的字段是一个字类似字符串,并不区分大小写。 单... -
javascript正则表达式和字符串RegExp and String(一)
2020-12-13 16:37:06为了更好的描述模式,正则表达式提供了3个标识,分别是: g/i/m g: 全局匹配:在整个字符串中匹配,而不是在第一次匹配后之后停止 i: 忽略大小写匹配 m: 对多行字符串中的每一行,应用行首和行末的特殊字符(分别 -
Oracle 单双引号使用
2010-12-27 20:53:00在Oracle中: 双引号的作用是:如果创建对象的时候,对象名、字段名加双引号,则表示Oracle将严格区分大小写,否则Oracl都默认大写。 而单引号则表示:这个加了单引号的字段是一个字类似字符串... -
Python基础知识(1)---- 数据类型和变量
2019-09-29 20:00:14字符串是以单引号'或双引号"括起来的任意文本; 如果'本身也是一个字符,那就可以用""括起来,比如"I'm OK" 如果字符串内部既包含'又包含",可以用转义字符\来标识,比如: 'I\'m \"OK\"!' r''表示''内部的字符串... -
千万级数据的分类搜索引擎(六)
2007-08-08 22:24:00运营部署和性能表现 部署...总部署12个进程,使用了4台服务器,服务器内存4~6G,双CPU。 性能表现:单个服务在处理1千万数据时,平均吞吐25个/秒,系统总吞吐在120个/秒左右目前在PV为400W/天的情况下,表现良好,超 -
网工英语词汇表 网工必备
2009-03-09 10:08:30部4对双绞线,它名字中的V G是来源于它可以传输语音(“Voice grade”)。 802.3 关于以太网设备和数据操作的I E E E标准。 8 0 2 . 5 关于令牌环的连网设备及数据操作的I E E E标准。 A A + C o m p T I A创建的、... -
微软活动目录管理管理简明手册
2010-12-08 11:04:17LDAP相对标识名是LDAP标识名的一部分,它用来标识容器中的对象,它的组成随客户建立的现场搜索内容的大小而变化。搜索内容的范围可以是域组件,也可以是普通名字的对象。 1 N6 f7 Q+ p: _0 L: e0 n2 n5 o7 g1 y 下表... -
Conflict with my .vimrc?
2021-01-12 08:48:05norm g`\"" | \ endif <p>" 查询设置(Search) {<!-- -->{<!-- -->{2 "====================... -
source insight 配置文件
2010-09-19 11:03:55跳转到定义:ALT+E,CTRL+鼠标左击, CTRL+=, CTRL+鼠标双左击 Symbol Window: ALT+S, ALT+F8 Relation Window: ALT+R, ALT+O Context Window: Alt+T (用惯了ALT+E后,这个几乎被我忘记了) 书签:ALT+2, CTRL+M ...