2

我想在我的自定义键盘中处理 EditText 的 inputType 属性。

由于我只需要显示几个键,因此我想将它们对齐在键盘的中心。不幸的是,该<Row>元素没有android:gravity属性。

我正在尝试创建类似的东西: 截屏

我正在考虑添加一些其他键并将它们隐藏起来,这样空间就会被占用,但我认为这不是一个好的解决方案。

你知道有什么方法可以使键居中对齐吗?

谢谢!

4

1 回答 1

0

一个简单的解决方案是在布局中采用按钮,然后采用布局的重力......我提供了 ua 通用布局,可以在所有布局上运行。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout 
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight=".50"
        ></RelativeLayout>
    <LinearLayout 
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight=".50"
            android:orientation="vertical"
        >

        <LinearLayout 
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight=".25"
                android:gravity="center"
            >

            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />

        </LinearLayout>
        <LinearLayout 
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight=".25"
                android:gravity="center"
            >
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
        </LinearLayout>
        <LinearLayout 
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight=".25"
                android:gravity="center"
            >
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
        </LinearLayout>
        <LinearLayout 
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight=".25"
                android:gravity="center"
            >
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
            <Button 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="myTxt"
                />
        </LinearLayout>


    </LinearLayout>


</LinearLayout>

@Ungureanu Liviu,还有任何疑问,请询问。

于 2013-07-03T12:43:00.350 回答