如何在本机android中设置按钮的高度

问题描述 投票:10回答:2

我正在学习反应Android移动应用程序的本机编程。我正在制作一个屏幕,我需要设置button.的高度我在button添加了view并设置了使用样式的高度,但按钮高度没有变化。

/**
 * LoginComponent of Myntra
 * https://github.com/facebook/react-native
 * @flow
 */



 import React, { Component } from "react";
 import { AppRegistry, Text, View, Button, TextInput } from "react-native";

class LoginComponent extends Component {
render() {
    return (
        <View style={{ flex: 1, flexDirection: "column", margin: 10 }}>
            <TextInput
                style={{
                    height: 40,
                    borderColor: "gray",
                    borderWidth: 0.5
                }}
                placeholder="Email address"
                underlineColorAndroid="transparent"
            />

            <TextInput
                style={{
                    height: 40,
                    borderColor: "gray",
                    borderWidth: 0.5
                }}
                placeholder="Password"
                secureTextEntry={true}
                underlineColorAndroid="transparent"
            />

            <View style={{ height: 100, marginTop: 10 }}>
                <Button title="LOG IN" color="#2E8B57" />
            </View>
        </View>
    );
  }
}

AppRegistry.registerComponent("Myntra", () => LoginComponent);

任何人都可以帮我根据我的要求设置按钮的高度。

提前致谢。

android reactjs react-native react-native-android
2个回答
30
投票

此组件具有有限的选项,因此您无法将其调整为固定的height

我建议你使用TouchableOpacity组件来构建自己的按钮,使用自己的propertiesstyles

您可以像这样轻松地设置样式:

<TouchableOpacity style={{ height: 100, marginTop: 10 }}>
    <Text>My button</Text>
</TouchableOpacity>

-1
投票

您可以使用以下方法轻松地按照上述宽度设置按钮宽度:

<View style={[{ width: "90%", margin: 10, backgroundColor: "red" }]}>
          <Button
            onPress={this.buttonClickListener}
            title="Button Three"
            color="#FF3D00"
          />
        </View> 

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.