Android:带按钮的ImageView边框

时间:2015-09-23 19:26:34

标签: android matrix imageview border android-imagebutton

我希望制作一个ImageView,我可以通过触摸操作(平移,缩放和旋转)。我目前有一个使用ImageButton并可以翻译和缩放的。我希望能够使用边框包裹此ImageView,并将MATCH_PARENT个对象放在角落中以充当“关闭”状态。和'缩放/旋转'按钮。与下图(摘自this similar SO question应用程序)非常相似:

here

我无法弄清楚从哪里开始。为了操纵Matrix我需要将视图设置为ImageView,并使用Matrix来操纵其中的drawable。但那么我该如何将drawable包裹在边境?

或者我应该直接操纵 Dim cmd As ADODB.Command Dim rs As New ADODB.Recordset Public dc As New DataConnection Set cmd = New ADODB.Command cmd.ActiveConnection = Connection.dc.conn cmd.CommandType = adCmdStoredProc cmd.CommandText = "[dbo].[CheckStatus]" cmd.Parameters.Append cmd.CreateParameter("VendorNumber", adInteger, adParamInput,6, VendorNumber) Set rs = cmd.execute If Not rs.EOF Then BalanceStatus = rs.Fields(0) End If 而不是绘制?如果是这样,我将如何使用 String url = "someurl.php"; HttpPost httppost = new HttpPost(url); // Creating HTTP client HttpClient httpClient = new DefaultHttpClient(); try { HttpResponse response = httpClient.execute(httpPost); String responseString = EntityUtils.toString(response.getEntity()); JSONObject jsonObject = new JSONObject(responseString); String error = jsonObject.getString("item1"); } catch (IOException e) { e.printStackTrace(); }

进行此操作

1 个答案:

答案 0 :(得分:0)

创建一个框架布局并在其上添加四个按钮,将框架添加到布局中。使用该按钮的onclick创建您提到的不同功能。