基本上我想要实现的是从服务器中提取少量字符串, 然后创建按钮作为字符串的数量, 按钮必须占据整个屏幕(水平)。 问题是每次我得到不同的数据,所以项目宽度必须是动态的
我试图对物品加权,但它不起作用。 是否有可能用列表来实现这样的事情?
编辑:
WebDriverWait wait = new WebDriverWait(driver, 10);
try {
WebElement element= wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("someid")));
}
catch(Exception e)
{
System.out.println(e.getMessage());
}
这是我的项目:
<android.support.v7.widget.RecyclerView
android:id="@+id/gameTypeList"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>