zoukankan      html  css  js  c++  java
  • RadioGroup和Radiobutton

    <LinearLayout 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"
       android:orientation="vertical" >
    <RadioGroup 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        
        >
        <RadioButton 
            android:id="@+id/r1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="资讯"
            android:layout_weight="1"
            
            android:button="@null"
             android:gravity="center"
          android:textSize="25dp"
            />
        <RadioButton 
            android:id="@+id/r2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="热点"
            android:layout_weight="1"
            android:button="@null"
           android:textSize="25dp"
             android:gravity="center"
            />
        <RadioButton 
            android:id="@+id/r3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="博客"
            android:layout_weight="1"
            android:button="@null"
             android:gravity="center"
            android:textSize="25dp"
            
            />
         <RadioButton 
             android:id="@+id/r4"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="推荐"
             android:button="@null" 
             android:gravity="center"
             android:textSize="25dp"
             android:layout_weight="1"
             />
        
    </RadioGroup>
    
    </LinearLayout>
  • 相关阅读:
    Magento开发文档(一):Magento入门
    Magento开发文档(三):Magento控制器
    CSS 第一天
    iOS 关闭定时器
    thinkphp 5.0 Request使用
    iOS icon与启动图片
    数组
    PHP获取表单变量
    iOS ipa 包优化
    UIImage 渲染模式
  • 原文地址:https://www.cnblogs.com/1426837364qqcom/p/5356881.html
Copyright © 2011-2022 走看看