Android textview - 可以对每个字母进行边框处理(如表格边框)

时间:2017-09-14 22:53:00

标签: java android xml aide-ide

我想知道是否有可能以8000 LP看起来像[8|0|0|0] LP的方式设计我的文本视图(也有顶部和底部边框)。我尝试查找它,但我能找到的就是人们想要文本上的轮廓/阴影边框。如果可能的话,我不想在我的布局中创建一个表,但如果需要,请举例说明我的代码格式。

下面是我的意思的一个例子......它的每个数字都被那个方形边框分开。 duel link

继承我的xml(仅缩小相关信息)。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/default_background_obelisk"
    android:scaleType="centerCrop"
    android:padding="16dp">
<TextView
        android:id="@+id/playerTwo_LP"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:gravity="center"
        android:textSize="40dp"
        android:textColor="#ffffff"
        android:text="8000 LP"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:rotation="180"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toRightOf="@+id/playerTwo_addLP"
        app:layout_constraintRight_toLeftOf="@+id/playerTwo_loseLP"
        app:layout_constraintBottom_toBottomOf="@+id/playerTwo_toolKit"
        android:textIsSelectable="true"/>

*    *    *

<TextView
        android:id="@+id/playerOne_LP"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:gravity="center"
        android:text="8000 LP"
        android:textAppearance="?android:attr/textAppearanceLarge"
        app:layout_constraintTop_toTopOf="@+id/playerOne_toolKit"
        app:layout_constraintLeft_toRightOf="@+id/playerOne_toolKit"
        app:layout_constraintRight_toLeftOf="@+id/playerOne_CardLibrary"
        app:layout_constraintBottom_toBottomOf="parent"/>

当前布局

layout

1 个答案:

答案 0 :(得分:1)

提供的代码将导致如图所示的视图。如果它是你想要的,你可以跟随,或者你可以根据自己的需要进行自定义!

The code provided will lead to a view as shown in the picture. If it is what you want you can follow along or you can customize it to what you want!:

首先,您需要制作一个xml drawable边界。这将用作文本每个部分的背景。并在文本中的每个字母或数字周围。 在drawable文件夹中创建一个资源文件,可以调用它border.xml(全名res/drawable/border.xml)。将其复制并粘贴到其中:

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" 
      android:shape="rectangle" >
        <solid android:color="#00ffffff" />
        <stroke android:width="1dip" android:color="#4fa5d5"/>
        <padding android:left="4dp" android:right="4dp" 
                android:bottom="1dp" android:top="1dp"/>                   
    </shape>

这会对您的文字带来边界效果,您还可以编辑颜色和填充以满足您的需求。 我们需要使用TextView创建一个布局作为根视图。因此,在您的布局文件夹中创建一个文件,我们可以将其称为border_text_view.xml(全名res/layout/border_text_view.xml)。复制并粘贴下面的代码:

    <?xml version="1.0" encoding="utf-8"?>
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/border"/>

注意:背景设置为drawable文件夹中之前声明的border.xml

然后在您计划显示边框文字的布局中,让我们说activity_main(它可以是您想要显示视图的任何布局)。

将此添加到该布局:

    .......
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:id="@+id/layout_border"/>
    .......

然后在你的布局的Java类(Activity或Fragment)中获得对上面添加的Linear布局的引用,并按如下方式调用该方法:

    LinearLayout linearLayout=(LinearLayout)findViewById(R.id.layout_border);  
    addBorderedView(this, linearLayout, "8000LP"); 

现在按如下方式制作方法addBorderedView

    private void addBorderedView(Context context, LinearLayout layout, String string_to_display) {
    String[] array = string_to_display.split("");
    for (int i = 1; i < array.length; i++) {
        TextView borderedTextView = (TextView) LayoutInflater.from(context).inflate(R.layout.border_text_view, null);
        borderedTextView.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
        borderedTextView.setGravity(Gravity.CENTER);
        borderedTextView.setText(array[i]);
        LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) borderedTextView.getLayoutParams();
        params.setMargins(2, 0, 2, 0); //substitute parameters for left, top, right, bottom
        borderedTextView.setLayoutParams(params);
        layout.addView(borderedTextView);
    }
}

为了提高性能,如果你计划以这种方式显示大句子,你可能需要制作一个视图持有者,如果你不这样做,你就可以去了!