简体   繁体   English

将android按钮放置在特定位置

[英]Placing android button in a particular place

I want to place the Android button1 in a Specific place in Android screen, but depends on the TextView1 size it showing in different places. 我想将Android button1放置在Android屏幕上的特定位置,但是取决于它在不同位置显示的TextView1大小。

How i can place the android button in a particular place 我如何将android按钮放置在特定位置

 <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"
    tools:context=".InfoActivity" >
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:orientation="vertical" 
        android:background="@drawable/backquiz">
        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/question1"
            android:text="Large Text"
            android:textAppearance="?android:attr/textAppearanceLarge" />
            <Button
                android:id="@+id/button1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceLarge" 
                android:background="@drawable/next"/>

    </LinearLayout>
</RelativeLayout>

I need the Next button to be present in Bottom. 我需要“下一步”按钮出现在“底部”中。

这是图片

Use relative layout for button. 使用按钮的相对布局。 here is the link. 是链接。

Try Below code to solve your problem 尝试下面的代码来解决您的问题

<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" >
            <TextView
                android:id="@+id/textView1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:text="Large Text"
                android:textAppearance="?android:attr/textAppearanceLarge" />

                <Button
                    android:id="@+id/button1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true" //set this propery to align your button in bottom
                    android:layout_centerHorizontal="true"  //set this propery to align your button in center
                    android:background="@drawable/next"
                    />

    </RelativeLayout>
<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"
    tools:context=".InfoActivity" >
        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/question1"
            android:text="Large Text"
            android:textAppearance="?android:attr/textAppearanceLarge" />
            <Button
                android:id="@+id/button1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceLarge" 
                android:background="@drawable/next"
                android:layout_below="@+id/textView1"/>

</RelativeLayout>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM