zoukankan      html  css  js  c++  java
  • Android学习笔记——TableLayout

    该工程的功能是实现在一个activity中显示一个表格

    以下代码是MainActivity.java中的代码

    package com.example.tablelayout;
    
    import android.app.Activity;
    import android.os.Bundle;
    import android.view.Menu;
    import android.view.MenuItem;
    
    public class MainActivity extends Activity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    }

    以下的代码是activity_main.xml中的代码

    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/TableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:stretchColumns="1"
        tools:context="${relativePackage}.${activityClass}" >
        
        <!-- 由于fill_parent不能填满,所以stretchColumns指定列拉伸 -->
        
        <TableRow>
            <TextView
                android:text="@string/hello_world" 
                android:padding="3dip"
                android:background="#aa0000" />
            <TextView
                android:text="@string/hello_world" 
                android:padding="3dip"
                android:background="#00aa00"
                android:gravity="center_horizontal" />
            <TextView
                android:text="@string/hello_world" 
                android:padding="3dip"
                android:background="#0000aa"
                android:gravity="right" />
                         
        </TableRow>
            
        <TableRow>
            <TextView
                android:text="@string/hello_world" 
                android:padding="3dip" />
                 
            <TextView
                android:text="@string/hello_world" 
                android:padding="3dip"
                android:gravity="right" />
                       
        </TableRow>
    
    </TableLayout>
  • 相关阅读:
    VC连接数据库方式
    vc中有关数据类型的转换
    获得MFC窗口指针方法总结
    Windows 中绘图以及Windows 的图形设备接口(GDI )
    C#访问远程共享加锁文件夹
    C#操作注册表全攻略
    学习asp.net比较完整的流程
    sogou rank查询接口
    jquery星级插件、支持页面中多次使用
    防止网页被嵌入框架的js代码
  • 原文地址:https://www.cnblogs.com/tonglin0325/p/4584150.html
Copyright © 2011-2022 走看看