gpt4 book ai didi

java - 如何正确调整布局大小? - 安卓

转载 作者:行者123 更新时间:2023-11-30 02:56:03 24 4
gpt4 key购买 nike

我正在尝试为索尼智能 watch 2 制作一个应用。

我正在尝试制作一个基本的转换器应用程序,它由一个文本框、两个单选按钮和一个按钮组成。然而,在 watch 上进行测试时,一切都是巨大的。如果我在 eclipse 中调整事物的大小,事物就会消失,而其他事物会发生什么?它在 watch 上的图片:http://content.screencast.com/users/jeremyc12/folders/Jing/media/050d6158-1daa-4ebe-8eb2-ed8a46e3d024/2014-04-23_1334.png

这是我的 xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="@dimen/smart_watch_2_control_width"
android:layout_height="@dimen/smart_watch_2_control_height"
android:background="@color/myColor"
android:onClick="calculate"
tools:ignore="PxUsage" >

<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:inputType="numberSigned"
android:width="5px" >

<requestFocus />
</EditText>

<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/editText1"
android:layout_alignBottom="@+id/editText1"
android:layout_alignParentRight="true"
android:layout_marginRight="16dp"
android:checked="true"
android:text="@string/kmh" />

<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button2"
android:layout_alignLeft="@+id/radioButton1"
android:text="@string/miles" />

<Button
android:id="@+id/button2"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/editText1"
android:text="@string/calc" />

最佳答案

我在这里看到两个问题:

  1. 正如 Aritra 指出的那样,确保在您的 XML 布局中没有进行任何缩放。所以不要使用“dp”而只使用“px”。

  2. SW2 仅支持 Android 中的几个 View 。详情请看这里: http://developer.sonymobile.com/reference/sony-addon-sdk/com/sonyericsson/extras/liveware/aef/control/Control.Intents#EXTRA_DATA_XML_LAYOUT

    其中不包含 EditText、RadioButton 和 Button View ,因此即使没有缩放,您也会看到一些奇怪的问题。

关于java - 如何正确调整布局大小? - 安卓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23244326/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com