我正试图以编程方式启用和禁用4个UI按钮。我正在使用Unity3D,但我似乎不能使它工作。我错过了什么?我当前的尝试是这样的:
My LinearLayout
xml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="right"
android:orientation="vertical" >
<com.BoostAR.Generic.TintedImageButton
android:id="@+id/helpButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/overlayButtonMargin"
android:src="@drawable/help"
android:visibility="visible" />
<com.BoostAR.Generic.TintedImageButton
android:id="@+id/refreshButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/overlayButtonMargin"
android:src="@drawable/refresh" />
<com.BoostAR.Generic.TintedImageButton
android:id="@+id/screenshotButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/overlayButtonMargin"
android:src="@drawable/photo" />
<com.BoostAR.Generic.LockButton
android:id="@+id/lockButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/overlayButtonMargin"
android:src="@drawable/unlocked" />
</LinearLayout>
我在代码中做了什么:
private static final int[] AUGMENTED_UI_IDS = {
R.id.refreshButton, R.id.screenshotButton, R.id.lockButton
};
private void updateAugmentedUiVisibility()
{
final int visibility =
(mShouldShowAugmentedUI ? View.VISIBLE : View.INVISIBLE);
runOnUiThread(new Runnable() {
@Override
public void run() {
for (int id : AUGMENTED_UI_IDS) {
final View view = findViewById(id);
if (view == null) {
Log.e(LOG_TAG, "Failed to find view with ID: " + id);
} else {
Log.e(LOG_TAG, "Visibility: " + visibility);
view.setVisibility(visibility);
}
}
}
});
}
}
结果:
语句
Log.e(LOG_TAG, "Failed to find view with ID: " + id);
被调用。当我交叉比对身份证号码时,似乎是正确的。
快速解释可能会给事情添加一些顺序,当您通过代码设置属性时,最好记住这些:
view.setVisibility(View.INVISIBLE); // the opposite is obvious
将使视图不可见,但仍然会占用空间(你不会看到它)
view.setVisibility(View.GONE);
将折叠视图,使其不可见,并将以一种占据空间的方式重新排列周围的视图,就好像它从未存在过一样。
view.setEnabled(false); // the opposite is again obvious
将使视图无响应,但以一种视觉上可理解的方式,例如,假设你使用一个开关,在你切换它之后,你希望它变得不可改变,那么这将是一个例子:
Switch MySwitch = (Switch) someParentView.findViewById(R.id.my_switch);
MySwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if (isChecked)
{
MySwitch.setEnabled(false);
}
}
}
顺便说一下,这在某种程度上也与布局相关。