为什么只有我的xml布局工作并优先于OnCreate中的代码?我试图使一个imageview可见/不可见,但只有布局才能成功,你知道为什么吗?
它只是一个linearLayout垂直:
<ImageView
android:id="@+id/friendsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="visible"
android:src="@drawable/friends_button" />
整个xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/welcome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="86dp"
android:layout_marginTop="10dp"
android:orientation="vertical"
>
<TextView
android:id="@+id/textRequest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<ImageView
android:id="@+id/playButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/play_button" />
<ImageView
android:id="@+id/friendsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="visible"
android:src="@drawable/friends_button" />
</LinearLayout>
</RelativeLayout>
在friendsButton.setVisibility(View.INVISIBLE);
中和OnCreate
我试图将其隐藏在布局中并且在代码中可见,但仍然与布局具有相同的优先级...
有什么想法吗?
由于
编辑:
所以这是我活动中的OnCreate方法:
public class MainActivity extends Activity {
private UiLifecycleHelper fbUiLifecycleHelper;
private ImageView playButton;
private ImageView friendsButton;
private TextView textRequest;
// Parameters of a WebDialog that should be displayed
private WebDialog dialog = null;
private String dialogAction = null;
private Bundle dialogParams = null;
LayoutInflater inflater;
private boolean gameLaunchedFromDeepLinking = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final LayoutInflater factory = getLayoutInflater();
final View v = factory.inflate(R.layout.activity_main, null);
textRequest = (TextView)v.findViewById(R.id.textRequest);
playButton = (ImageView)v.findViewById(R.id.playButton);
playButton.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
onPlayButtonTouched();
return false;
}
});
friendsButton = (ImageView)v.findViewById(R.id.friendsButton);
friendsButton.setVisibility(View.INVISIBLE);
friendsButton.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
onFriendsButtonTouched();
return false;
}
});
答案 0 :(得分:1)
您看到的行为是因为onCreate()
的设置方式:
setContentView(R.layout.activity_main);
final LayoutInflater factory = getLayoutInflater();
final View v = factory.inflate(R.layout.activity_main, null);
调用setContentView(int)
后,R.layout.activity_main
会膨胀,并且您的活动视图已设置。
在此之后,您再次夸大R.layout.activity_main
:
final LayoutInflater factory = getLayoutInflater();
final View v = factory.inflate(R.layout.activity_main, null);
视图v
与setContentView(R.layout.activity_main, null)
已设置的视图不同。现在,使用v
初始化组件:
textRequest = (TextView)v.findViewById(R.id.textRequest);
playButton = (ImageView)v.findViewById(R.id.playButton);
friendsButton = (ImageView)v.findViewById(R.id.friendsButton);
同样,这些小部件与您在活动中看到的小部件不对应。因此,当您执行以下操作时:
friendsButton.setVisibility(View.INVISIBLE);
它对活动视图没有任何作用。
我希望你能理解这里的问题。现在,到解决方案。有两种方法可以解决这个问题:
setContentView(R.layout.activity_main)
:卸下:
final LayoutInflater factory = getLayoutInflater();
final View v = factory.inflate(R.layout.activity_main, null);
使用:
setContentView(R.layout.activity_main);
// Notice, we're not using v.findViewById(....)
textRequest = (TextView) findViewById(R.id.textRequest);
playButton = (ImageView) findViewById(R.id.playButton);
....
....
friendsButton = (ImageView) findViewById(R.id.friendsButton);
friendsButton.setVisibility(View.INVISIBLE); // Will work now
setContentView(R.layout.activity_main)
,直到视图被夸大:保持代码不变,但从头开始删除setContentView(R.layout.activity_main);
。在设置所有小部件后放置它。
....
....
friendsButton.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
onFriendsButtonTouched();
return false;
}
});
// Use the inflated View `v`
setContentView(v);