我们正在为平板电脑设计应用程序,我已为 7和10英寸平板电脑制作了可绘制文件夹,但我们可以看到市场上也有一些尺寸为 2560 x 1600像素,12.2英寸。
您能否确保在 12.2英寸平板电脑中使用哪个可绘制文件夹。
最近在市场上发布了新的 Samsung Tab PRO 12.2
由于
答案 0 :(得分:0)
我正在使用此方法找出将为每个设备选择的布局文件夹。
首先在每个文件夹中的“开始布局”上添加一个视图。
例如在" layout-land-xxhdpi" Activity_main.xml文件中的文件夹:
<View
android:layout_width="0.0dip"
android:layout_height="0.0dip"
android:layout_weight="1.0"
android:id="@+id/layouttype"
android:tag="layout-land-xxhdpi"/>
或&#34; layout-xlarge&#34; Activity_main.xml文件中的文件夹:
<View
android:layout_width="0.0dip"
android:layout_height="0.0dip"
android:layout_weight="1.0"
android:id="@+id/layouttype"
android:tag="layout-xlarge"/>
然后在代码下方使用内部代码来找出为您的设备选择的文件夹。
布局名称和文件夹将在logcat中出现。
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
View v = (View)findViewById(R.id.layouttype);
Log.i(getClass().getSimpleName(),"Layout is : "+ v.getTag().toString());
我为我的应用程序制作所有standrad布局文件夹,因为它将运行所有设备。 使用上述方法,我设计了每个设备所需的所有布局。