当前位置: 代码迷 >> Android >> 新人求先人回答
  详细解决方案

新人求先人回答

热度:123   发布时间:2016-04-28 06:34:46.0
新人求前辈回答
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="26dp"
        android:layout_marginTop="116dp"
        android:text="@string/hello_world" />

</RelativeLayout>
我想要把<RelativeLayout布局 变成linearLayout布局 请问怎么弄
------解决方案--------------------
<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"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</LinearLayout>

------解决方案--------------------
引用:
Quote: 引用:

直接换就行了啊 。 。 。。 将RelativeLayout相关属性都去掉

怎么看是相关属性,

看android developer 官网上面 该布局部分
------解决方案--------------------
RelativeLayout 改成LinearLayout就行了。相关属性的话,比如说RelativeLayout中的控件,是可以加android:layout_centerInParent属性的,而这些属性在LinearLayout中是不起作用的
------解决方案--------------------
直接换就行了,如果出现红叉叉,就把这个属性去掉,好了呀
  相关解决方案