由于texview大小,按钮位置会发生变化

时间:2018-01-16 04:29:08

标签: java android android-layout button textview

我有TextView,点击按钮会显示不同的文字。但问题是,由于TextView大小,按钮位置会发生变化。我不想在不使用保证金的情况下更改按钮位置。请帮忙。

我的设计XML代码。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.arnab.androiddevelopmentfundamentals.MainActivity">

    <TextView
        android:id="@+id/MyTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="28dp"
        android:text="@string/ui_and_events"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/MyText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/MyTitle"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="39dp"
        android:text="@string/my_text"
        android:textColor="@color/colorPrimary"
        android:textSize="30sp" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignEnd="@+id/MyText"
        android:layout_below="@+id/MyText"
        android:layout_marginTop="33dp"
        android:text="@string/change_1" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignStart="@+id/button1"
        android:layout_below="@+id/button1"
        android:layout_marginTop="48dp"
        android:text="@string/change_2" />

    </RelativeLayout>

我点击按钮的java代码。

package com.example.arnab.androiddevelopmentfundamentals;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    TextView MyText;
    Button button1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        MyText = (TextView)findViewById(R.id.MyText);
        button1 = (Button)findViewById(R.id.button1);

        button1.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        if(v == button1){
            MyText.setText("You have clicked button 1");
        }
    }
}

那么,如何在不使用保证金的情况下解决这个问题。

enter image description here

enter image description here

如您所见,onclick事件后按钮位置会发生变化。

3 个答案:

答案 0 :(得分:5)

不要使用android:layout_alignEnd="@+id/MyText"作为按钮,按钮会在文本末尾移动,如果文本长度发生变化则尝试使用此代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.arnab.androiddevelopmentfundamentals.MainActivity">

    <TextView
        android:id="@+id/MyTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="28dp"
        android:text="@string/ui_and_events"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/MyText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/MyTitle"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="39dp"
        android:text="@string/my_text"
        android:textColor="@color/colorPrimary"
        android:textSize="30sp" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="45dp"
        android:text="@string/change_1"
        android:layout_below="@+id/MyText"
        android:layout_centerHorizontal="true" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        android:text="@string/change_2"
        android:layout_below="@+id/button1"
        android:layout_alignLeft="@+id/button1"
        android:layout_alignStart="@+id/button1" />

</RelativeLayout>

答案 1 :(得分:0)

删除

 android:layout_alignEnd="@+id/MyText"

从您的按钮One!它将你的button1连接到文本的右侧/末尾。并且当button1连接到按钮2时,所以它们都会在文本发生变化时移动..从button2中删除上述属性后,您将看到两个按钮将出现在左侧/开始位置

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent">

    <TextView
        android:id="@+id/MyTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="28dp"
        android:text="zxczxc"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/MyText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/MyTitle"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="39dp"
        android:text="asdas"
        android:textColor="@color/colorPrimary"
        android:textSize="30sp" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/MyText"
        android:layout_marginTop="33dp"
        android:text="abc" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignStart="@+id/button1"
        android:layout_below="@+id/button1"
        android:layout_marginTop="48dp"
        android:text="qwe" />

如果您希望按钮始终居中,那么这是使用layout_gravityLinearLayout作为容器标记(根标记)的解决方案

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:orientation="vertical"
   android:layout_height="match_parent">

   <TextView
       android:id="@+id/MyTitle"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentTop="true"
       android:layout_centerHorizontal="true"
       android:layout_marginTop="28dp"
       android:text="zxczxc"
       android:textSize="30sp" />

    <TextView
       android:id="@+id/MyText"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_below="@+id/MyTitle"
       android:layout_centerHorizontal="true"
       android:layout_marginTop="39dp"
       android:text="asdas"
       android:textColor="@color/colorPrimary"
       android:textSize="30sp" />

    <Button
       android:id="@+id/button1"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_below="@+id/MyText"
       android:layout_marginTop="33dp"
       android:layout_gravity="center"
       android:text="abc" />

    <Button
       android:id="@+id/button2"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignStart="@+id/button1"
       android:layout_below="@+id/button1"
       android:layout_marginTop="48dp"
       android:layout_gravity="center"
       android:text="qwe" />

答案 2 :(得分:-1)

最简单的解决方案是使用LinearLayout用于此目的,因为您的要求是垂直方向的线性项目列表

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  android:gravity="center_horizontal"
  tools:context="com.example.arnab.androiddevelopmentfundamentals.MainActivity">

  <TextView
    android:id="@+id/MyTitle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="28dp"
    android:text="@string/ui_and_events"
    android:textSize="30sp" />

  <TextView
    android:id="@+id/MyText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="39dp"
    android:text="You have clicked button 1"
    android:textColor="@color/colorPrimary"
    android:textSize="30sp" />

  <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="33dp"
    android:text="@string/change_1"
     />

  <Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="48dp"
    android:text="@string/change_2"
    />

</LinearLayout>

这使对象在中心水平方向上对齐,并将它们完美地排列在一起