我使用的是Android Studio 2.3.3,默认布局是ContraintLayout。我能够找到如何在XML代码中更改为RelativeLayout更改它的方法。
我的问题是填充父级对于每个项目都不可用,而是“无”。然而match_wrap& fill_parent可用。
你能帮忙吗?
答案 0 :(得分:0)
如果您想使用相对布局填充屏幕,可以使用
android:layout_width="match_parent"
android:layout_height="match_parent"
答案 1 :(得分:0)
int timeout = connection.timeout();
while(_state == StateInProgress && !timedOut)
{
try
{
if(timeout >= 0)
{
wait(timeout);
if(_state == StateInProgress)
{
timedOut = true;
}
}
else
{
wait();
}
}
catch(InterruptedException ex)
{
}
}
}
if(timedOut)
{
//
// Must be called outside the synchronization of
// this object
//
connection.exception(new Ice.TimeoutException());
//
// We must wait until the exception set above has
// propagated to this Outgoing object.
//
synchronized(this)
{
while(_state == StateInProgress)
{
try
{
wait(); //147 line
}
catch(InterruptedException ex)
{
}
}
}
}
现已弃用,您可以在此处引用此Android Docs而是使用fill_parent
。要将ConstraintLayout更改为RelativeLayout,您可以在创建文件时更改Root布局,或者也可以将XML中的ConstraintLayout直接替换为RelativeLayout(Studio处理得很好)。