一個常用的佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/circular_bead_border"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="填寫姓名"
android:textSize="16sp" />
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/circular_bead_border"
android:ems="10"
android:hint="輸入您的名字"
android:lines="1"
android:padding="20dp"
android:textSize="18sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="名字將會顯示在考試成績排行榜中"
android:textColor="@color/text_thin"
android:textSize="16sp" />
<View style="@style/line" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:gravity="center_vertical"
android:orientation="horizontal" >
<TextView
android:id="@+id/edit_cancel"
android:layout_width="0.0px"
android:layout_height="40.0dip"
android:layout_marginBottom="5dp"
android:layout_marginLeft="20.0dip"
android:layout_marginRight="10.0dip"
android:layout_marginTop="5dp"
android:layout_weight="1.0"
android:background="@drawable/register_button_bg"
android:focusable="true"
android:gravity="center"
android:text="取消"
android:textColor="@color/period_unselected" />
<TextView
android:id="@+id/edit_submit"
android:layout_width="0.0px"
android:layout_height="40.0dip"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10.0dip"
android:layout_marginRight="20.0dip"
android:layout_marginTop="5dp"
android:layout_weight="1.0"
android:background="@drawable/button_bg"
android:focusable="true"
android:gravity="center"
android:text="確定"
android:textColor="@android:color/white" />
</LinearLayout>
</LinearLayout>
相關文章
- Flutter 常用佈局Flutter
- CSS常用佈局CSS
- 常用兩欄佈局和三欄佈局
- 佈局的常用解決方案
- 一個窗體佈局的問題
- Grid 佈局-子項補充及常用佈局
- 簡單聊一聊Flex佈局常用的屬性Flex
- 常用佈局管理器
- CSS系列之常用佈局CSS
- 常用的多列等高佈局收藏
- Qt的5種常用佈局搭建QT
- 5 種常用佈局的 flex 實現Flex
- 一個好用簡單的佈局空間EasyUIUI
- 還原一個 Windows 10 Metro 佈局Windows
- 一個專案的前端佈局給我的思考前端
- Android開發之常用佈局Android
- 快速建站中常用佈局都有哪些?
- 常用前端佈局,CSS技巧介紹前端CSS
- Android 實現一個通用的圓角佈局Android
- css經典佈局系列一——垂直居中佈局CSS
- 使用 yogaKit 實現一個資訊流佈局
- iOS UICollectionViewCell的一種佈局iOSUIView
- Android的四個基本佈局Android
- Android 常用佈局 介紹與使用Android
- iOS 常用佈局方式之ConstraintiOSAI
- web前端html+css常用佈局01Web前端HTMLCSS
- web前端html+css常用佈局02Web前端HTMLCSS
- web前端html+css常用佈局03Web前端HTMLCSS
- web前端html+css常用佈局04Web前端HTMLCSS
- HTML常用佈局標籤:提升網頁顏值!不可不知的HTML佈局技巧全解析!HTML網頁
- 使用 Flutter 實現一個走馬燈佈局Flutter
- 一個RecyclerView實現QQ空間相簿佈局View
- CSS佈局 --- 居中佈局CSS
- css佈局-float佈局CSS
- 成品直播原始碼推薦,常用的css居中佈局原始碼CSS
- dispaly的Grid佈局與Flex佈局Flex
- 收藏!40 個 CSS 佈局技巧CSS
- UICollectionView自定義佈局(一)UIView