我正在为平板电脑和手机开发Android应用。为实现这一目标,我为手机创建了两个文件夹(layout
),另一个用于平板电脑布局(layout-sw600dp
)。
根据我以前的问题comment,我认为只有平板电脑会从layout-sw600dp
中选择布局。但它似乎没有用。
对于nexus 4, nexus 5, nexus 6, nexus 7
设备,它采用layout-sw600dp
布局。
我在这里缺少什么?如何根据正确的DP
布局计算手机/平板电脑尺寸?
平板电脑和手机所需的设计:
使用两个独立布局的另一个退休:
手机设计:
标签设计:
在回复answer下面的回复帖子时,我有一个像这样的线性布局:
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayouttest">
<TextView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_gravity="center_horizontal"
android:textColor="@color/black"
android:gravity="left"
android:text="LabelFirstName"
android:layout_marginTop="@dimen/_8sdp"
android:textSize="@dimen/_13sdp"
android:id="@+id/firstNameLabel"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp" />
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/firstName"
android:layout_marginTop="@dimen/_3sdp"
android:background="@drawable/edt_bg"
android:textColor="@color/black"
android:layout_marginRight="@dimen/_15sdp"
android:layout_marginLeft="@dimen/_15sdp"
android:padding="@dimen/_5sdp"
android:textSize="@dimen/_14sdp"
android:textColorHint="@color/textColor" />
<TextView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_gravity="center_horizontal"
android:textColor="@color/black"
android:gravity="left"
android:text="LabelLastName"
android:layout_marginTop="@dimen/_3sdp"
android:textSize="@dimen/_13sdp"
android:id="@+id/lastNameLabel"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp" />
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/lastName"
android:layout_marginTop="@dimen/_3sdp"
android:background="@drawable/edt_bg"
android:textColor="@color/black"
android:layout_marginRight="@dimen/_15sdp"
android:layout_marginLeft="@dimen/_15sdp"
android:padding="@dimen/_5sdp"
android:textSize="@dimen/_14sdp"
android:textColorHint="@color/textColor" />
</LinearLayout>
当我更改方向时,文本视图不可见。任何解决方案?
答案 0 :(得分:2)
您可以使用https://github.com/intuit/sdp库根据所有设备(手机和平板电脑)设置视图尺寸。它将根据设备屏幕大小自动调整大小。设置如下:
<TextView
android:id="@+id/tv_username"
android:layout_width="@dimen/_45sdp"
android:layout_height="@dimen/_45sdp"
android:text="@string/chat"
android:textColor="@color/colorPrimary"/>
<强>更新强>
首先检查设备是使用Determine if the device is a smartphone or tablet?
的手机还是平板电脑或者您可以使用以下方法确定
public boolean isTablet() {
try {
// Compute screen size
DisplayMetrics dm = context.getResources().getDisplayMetrics();
float screenWidth = dm.widthPixels / dm.xdpi;
float screenHeight = dm.heightPixels / dm.ydpi;
double size = Math.sqrt(Math.pow(screenWidth, 2) + Math.pow(screenHeight, 2));
// Tablet devices should have a screen size greater than 6 inches
return size >= 6;
} catch(Exception e) {
e.printStackTrace();
return false;
}
}
然后以编程方式设置父LinearLayout方向,如下所示:
boolean tabletSize = getResources().getBoolean(R.bool.isTablet);
if (tabletSize) {
LinearLayout ll = (LinearLayout) findViewById(R.id.linearLayout);
ll.setLayoutParams(LinearLayout.WRAP_CONTENT, LinearLayout.WRAP_CONTENT);
ll.setOrientation(LinearLayout.HORIZONTAL);
} else {
LinearLayout ll = (LinearLayout) findViewById(R.id.linearLayout);
ll.setLayoutParams(LinearLayout.WRAP_CONTENT, LinearLayout.WRAP_CONTENT);
ll.setOrientation(LinearLayout.VERTICAL);
}
XML更正
您的布局必须如下所示:
<LinearLayout
android:id="@+id/linearLayouttest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/firstNameLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp"
android:layout_marginTop="@dimen/_8sdp"
android:gravity="left"
android:text="LabelFirstName"
android:textColor="@color/black"
android:textSize="@dimen/_13sdp" />
<EditText
android:id="@+id/firstName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp"
android:layout_marginTop="@dimen/_3sdp"
android:background="@drawable/edt_bg"
android:padding="@dimen/_5sdp"
android:textColor="@color/black"
android:textColorHint="@color/black"
android:textSize="@dimen/_14sdp" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/lastNameLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp"
android:layout_marginTop="@dimen/_3sdp"
android:gravity="left"
android:text="LabelLastName"
android:textColor="@color/black"
android:textSize="@dimen/_13sdp" />
<EditText
android:id="@+id/lastName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp"
android:layout_marginTop="@dimen/_3sdp"
android:background="@drawable/edt_bg"
android:padding="@dimen/_5sdp"
android:textColor="@color/black"
android:textColorHint="@color/black"
android:textSize="@dimen/_14sdp" />
</LinearLayout>
</LinearLayout>
答案 1 :(得分:0)
基本上xxhdpi和xhdpi适用于5“到5”5'设备。对于平板电脑,您可以使用
sw600dp
sw600dp-tvdpi
sw720dp
sw720dp-MDPI
sw720dp-xhdpi
。我一直在研究这个,这些是标签所采用的值。试试一次。希望它能奏效。