1>我如何在所有不同的屏幕尺寸下看到这样的屏幕?
2>我必须遵循的步骤是什么?
<LinearLayout 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"
tools:context="com.example.sridhar.textviewautosize.MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="240dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="36dp"
android:layout_marginTop="25dp"
android:autoSizeTextType="uniform"
android:text="Hello World I am Checking AutoFill Text View is working or not for different screens" />
</LinearLayout>
请检查此代码并告诉我如何根据小,中,大和xlarge的屏幕大小自动调整左边距和边距右属性。
答案 0 :(得分:2)
您应该在不同的values
文件夹中定义保证金,如下所示:
如果您需要支持更多屏幕尺寸,可以根据需要添加任意数量的sw
文件夹。您可以从下图中计算sw dp
:
- &GT; nexus 4:768/2 = 384dp,Nexus 5:1080/3 = 360,Pixel 2:1080 * 160/420 = 410dp。
答案 1 :(得分:2)
您需要设置hdpi,xhdpi等。它将涵盖所有手机大小。在资源中设置dimensions.xml。
例如: res / values-hdpi / dimensions.xml,res / values-xhdpi / dimensions.xml
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">10dp</dimen>
<dimen name="activity_vertical_margin">20dp</dimen>
答案 2 :(得分:1)
使用此方法获取屏幕尺寸
public void get_screen_size(){
int screenSize = getResources().getConfiguration().screenLayout &
Configuration.SCREENLAYOUT_SIZE_MASK;
switch(screenSize) {
case Configuration.SCREENLAYOUT_SIZE_XLARGE:
Toast.makeText(this, "Extra Large Screen", Toast.LENGTH_LONG).show();
break;
case Configuration.SCREENLAYOUT_SIZE_LARGE:
Toast.makeText(this, "Large Screen", Toast.LENGTH_LONG).show();
break;
case Configuration.SCREENLAYOUT_SIZE_NORMAL:
Toast.makeText(this, "Normal Screen", Toast.LENGTH_LONG).show();
break;
case Configuration.SCREENLAYOUT_SIZE_SMALL:
Toast.makeText(this, "Small Screen", Toast.LENGTH_LONG).show();
break;
default:
Toast.makeText(this, "Screen size is not xlarge, large, normal or small", Toast.LENGTH_LONG).show();
}
}
然后根据实际屏幕尺寸,应用您认为需要的边距以编程方式。
但是,我建议您完全避免使用边距,而是使用权重找到另一种解决方案,以便它可以在任何屏幕上使用。
最佳解决方案是遵循Android建议支持的不同屏幕尺寸,如下所示:
https://developer.android.com/guide/practices/screens_support.html
https://developer.android.com/training/multiscreen/screensizes.html