xml android studio中布局的一个例子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml android studio中布局的一个例子相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:id="@+id/lblListHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/blue1"
android:padding="10dp"
android:text="@string/site_list_downloaded"
android:textColor="#FFFFFF"
android:textSize="22sp"
android:textStyle="bold"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/grey1">
<TextView
android:id="@+id/lblname"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingBottom="5dp"
android:text="@string/lbl_site_name"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"
android:paddingTop="5dp"
android:textSize="17sp"/>
<TextView
android:id="@+id/lbl_city_state"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:maxWidth="100dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"
android:paddingTop="5dp"
android:textSize="17sp"/>
<TextView
android:id="@+id/lbl_local"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/lbl_local_version"
android:layout_weight="1"
android:maxWidth="100dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"
android:paddingTop="5dp"
android:textSize="17sp"/>
<TextView
android:id="@+id/lbl_server"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/lbl_server_version"
android:layout_weight="1"
android:maxWidth="100dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"
android:paddingTop="5dp"
android:textSize="17sp"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text=""
android:layout_weight="1"
android:maxWidth="100dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"
android:paddingTop="5dp"
android:textSize="17sp"/>
</LinearLayout>
</LinearLayout>
以上是关于xml android studio中布局的一个例子的主要内容,如果未能解决你的问题,请参考以下文章
在 Android Studio 中更改 xml 布局文件后需要重建
Android Studio - setContentView 不会显示新的 XML 布局