我正在尝试以编程方式启用和禁用4个UI按钮。我正在使用Unity3D,但似乎无法使其正常工作。我想念什么?我当前的尝试如下所示:
我的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);
被叫。当我交叉引用ID号时,这似乎很好。
最佳答案
一个简短的解释可能会增加一些顺序,当您通过代码设置属性时,记住以下几点是很好的:
view.setVisibility(View.INVISIBLE); // the opposite is obvious
将使视图不可见,但仍会占据空间(您只是看不到它)
view.setVisibility(View.GONE);
将会折叠视图,使其既不可见,又将重新排列周围的视图,从而占据该空间,就好像它永远不在那儿一样。
view.setEnabled(false); // the opposite is again obvious
将使视图无响应,但以视觉上可以理解的方式,例如,假设您使用了一个Switch,并且在切换之后,您希望它变得不可更改,那么将是一个示例:
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);
}
}
}
顺便说一下,这在某种程度上也与布局有关。
希望这可以帮助。
关于java - 如何在Android中启用和禁用按钮?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30670217/