Android开发之TableLayout布局的使…

Android开发之TableLayout布局的使用--通过配置文件来生成实例1

     <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >
    <TableRow>
     <EditText
         android:id="@+id/row1text"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="请输入检索关键字" />
<Button 
    android:id="@+id/row1but1"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="搜索" />
</TableRow>
<View 
 android:layout_height="2px"
 android:background="#FF909090"/>
<TableRow>
    <TextView 
        android:id="@+id/info1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20px"
        android:text="请选择文字编码"/>"
<RadioGroup 
    android:id="@+id/encoding"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <RadioButton
        android:id="@+id/utf"
        android:text="UTF-8"/>
    <RadioButton
        android:id="@+id/gbk"
        android:text="GBK"/>
    </RadioGroup>
    
</TableRow>
</TableLayout>

你可能感兴趣的:(Android开发之TableLayout布局的使…)