如何在Android中使用XML為TextView新增左側邊框?
此示例演示瞭如何在Android中使用XML為TextView新增左側邊框。
步驟1 - 在Android Studio中建立一個新專案,轉到檔案⇒新建專案,並填寫所有必需的詳細資訊以建立新專案。
步驟2 - 將以下程式碼新增到res/layout/activity_main.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" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = ".MainActivity"> <LinearLayout android:layout_width = "match_parent" android:layout_height = "wrap_content" android:background = "@drawable/text_style" app:layout_constraintBottom_toBottomOf = "parent" app:layout_constraintLeft_toLeftOf = "parent" app:layout_constraintRight_toRightOf = "parent" app:layout_constraintTop_toTopOf = "parent"> <TextView android:layout_width = "match_parent" android:layout_height = "wrap_content" android:layout_marginLeft = "10dp" android:text = "Hello World!" android:textSize = "30sp" /> </LinearLayout> </android.support.constraint.ConstraintLayout>
在上面的程式碼中,我們使用了TextView和LinearLayout。在LinearLayout中,我們將背景設定為text_style。因此,請在drawable中建立一個名為text_style.xml的檔案,如下所示:
<?xml version = "1.0" encoding = "utf-8"?>
<layer-list xmlns:android = "http://schemas.android.com/apk/res/android">
<item>
<shape android:shape = "rectangle">
<solid android:color = "#FFEB3B"/>
</shape>
</item>
<item android:left = "4dp">
<shape android:shape = "rectangle">
<solid android:color = "#FFF"/>
</shape>
</item>
</layer-list>步驟3 - 將以下程式碼新增到src/MainActivity.java
package com.example.andy.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}讓我們嘗試執行您的應用程式。我假設您已將實際的Android移動裝置連線到您的計算機。要在Android Studio中執行該應用程式,請開啟專案的一個activity檔案,然後單擊工具欄中的執行
圖示。選擇您的移動裝置作為選項,然後檢查您的移動裝置,它將顯示您的預設螢幕 -

在上面的程式碼中,它顯示了TextView的一側邊框。
點選這裡下載專案程式碼
廣告
資料結構
網路
關係資料庫管理系統 (RDBMS)
作業系統
Java
iOS
HTML
CSS
Android
Python
C語言程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP