谁能告诉我可以在列表视图中显示不同数量的列
例如:- 当我在纵向模式下看到列表视图时,它显示 3 列,当我在横向模式下看到列表视图时,它显示 4 列。我尝试这样做,但我的解决方案对我不起作用,我为布局文件夹中的 protrait 和 layout-land 文件夹中的横向定义了不同的布局,但它并不适合我。
Can any one tell me is it possible to achive this .
And one More thing it possible to execute some code by checking
For Example:- if(this is android phone){
execute this code;
}
if(this is android tablet){
execute this code;
}
like iphone and ipad developer do
if(this is iphone )
{
execute this code ;
}
if(this is ipad )
{
execute this code ;
}
因为我在手机和平板电脑中都使用了相同的应用程序,并且有人想在手机和平板电脑中显示不同的东西。
Thanks in advance