我知道如何使用androID进行相对布局:layout_alignParentBottom =“true”
<button androID:ID="@ID/preferencesSavebutton" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:layout_alignParentBottom="true" androID:layout_gravity="center_horizontal" androID:layout_marginBottom="10dp" androID:layout_marginleft="20dp" androID:layout_marginRight="20dp" androID:layout_margintop="10dp" androID:padding="15dp" androID:text="Save" androID:textStyle="bold" />
我们可以在relative Layout中使用偏好,还是有其他实用方法可以做到这一点?
解决方法 您可以在选项卡式布局中使用首选项活动,这将是您查询的实用方法.选项卡式布局应具有相对布局..在其中一个tabhost中,您可以通过意图使用首选项活动..看起来很酷.
我不认为你需要一个优先保存按钮..如果你有偏好活动,它会自动保存偏好并共享.
<?xml version="1.0" enCoding="utf-8"?> <TabHost androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:ID="@androID:ID/tabhost" xmlns:androID="http://schemas.androID.com/apk/res/androID" > <relativeLayout androID:layout_height="fill_parent" androID:layout_wIDth="fill_parent"> <FrameLayout androID:ID="@androID:ID/tabcontent" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:layout_above="@androID:ID/tabs" androID:padding="5dp" /> <TabWidget androID:ID="@androID:ID/tabs" androID:layout_alignParentBottom="true" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" /></relativeLayout> </TabHost>总结
以上是内存溢出为你收集整理的android – 在首选项菜单中使用相对布局全部内容,希望文章能够帮你解决android – 在首选项菜单中使用相对布局所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)