在 Android 中,RectF
是一個表示矩形區域的類,它包含左上角和右下角的坐標。要設置 RectF
的邊界,您需要設置其四個屬性:左、上、右和下。以下是一個示例,展示了如何創建一個 RectF
對象并設置其邊界:
import android.graphics.RectF;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 創建一個 RectF 對象
RectF rectF = new RectF();
// 設置邊界
float left = 50;
float top = 50;
float right = 200;
float bottom = 200;
rectF.set(left, top, right, bottom);
// 輸出邊界值
Log.d("RectF", "Left: " + rectF.left + ", Top: " + rectF.top + ", Right: " + rectF.right + ", Bottom: " + rectF.bottom);
}
}
在這個示例中,我們首先創建了一個 RectF
對象,然后設置了其邊界(左、上、右和下坐標)。最后,我們使用 Log.d()
輸出了這些邊界值。您可以根據需要修改這些值來調整矩形的邊界。