文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Android布局学习——线性布局和相对布局混合使用

Android布局学习——线性布局和相对布局混合使用

时间:2011-06-07  来源:龙云涛

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <RelativeLayout android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <Button android:id="@+id/BtnGo" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_alignParentRight="true"
            android:text="Go"></Button>        
        <EditText android:id="@+id/TextUrl" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:hint="请输入网址"
            android:layout_alignTop="@id/BtnGo" android:layout_toLeftOf="@id/BtnGo"></EditText>
    </RelativeLayout>
    <WebView android:id="@+id/WebView01" android:layout_width="fill_parent"
        android:layout_height="fill_parent">        
    </WebView>
</LinearLayout>

  

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载