在我的Android应用中,我在一个单独的XML文件中声明一个自定义视图.
<?xml version="1.0" enCoding="utf-8"?><linearLayout androID:ID="@+ID/download_interval_setter" androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"><button androID:layout_height="wrap_content" androID:layout_wIDth="wrap_content" androID:ID="@+ID/button_interval_up" ></button><EditText androID:ID="@+ID/Download_interval" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="1" androID:numeric="integer"></EditText><button androID:ID="@+ID/button_interval_down" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" ></button></linearLayout>
然后,我有main.xml文件,其中要包含上述XML中声明的视图,如下所示:
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="fill_parent"androID:layout_height="fill_parent"><Togglebutton androID:layout_height="wrap_content" androID:ID="@+ID/XMLStart" androID:textOn="@string/auto_update_on" androID:textOff="@string/auto_update_off" androID:layout_wIDth="wrap_content" /><include layout="@layout/download_interval_setter" androID:layout_toRightOf="@ID/XMLStart"/><button androID:layout_height="wrap_content" androID:ID="@+ID/ShowRadars" androID:text="@string/show_radars" androID:layout_wIDth="wrap_content" androID:layout_below="@ID/XMLStart"/> <button androID:layout_height="wrap_content" androID:ID="@+ID/ShowAccIDents" androID:text="@string/show_accIDents" androID:layout_wIDth="wrap_content" androID:layout_toRightOf="@ID/ShowRadars" androID:layout_below="@ID/XMLStart"/><button androID:layout_height="wrap_content" androID:ID="@+ID/ShowConstraints" androID:text="@string/show_constraints" androID:layout_wIDth="wrap_content" androID:layout_below="@ID/ShowRadars"/> <button androID:layout_height="wrap_content" androID:ID="@+ID/ShowPatrols" androID:text="@string/show_patrols" androID:layout_wIDth="wrap_content" androID:layout_below="@ID/ShowRadars" androID:layout_toRightOf="@ID/ShowConstraints"/> </relativeLayout>
如您所见,我正在尝试设置包含视图的layout_toRightOf属性,但未设置,正如我在hIErarchyvIEwer中所见
另一方面,如果我只是简单地将download_interval_setter.xml文件的内容复制粘贴到main.xml并在其中声明layout_toRightOf参数,则视图将根据需要定位在的右边.
我要去哪里错了?
谢谢
解决方法:
因此,我找到了答案here.
总结以上是内存溢出为你收集整理的android-设置包括的布局属性全部内容,希望文章能够帮你解决android-设置包括的布局属性所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)