我已經查看了一堆以前的答案,並嘗試了標記爲工作的代碼,但到目前爲止,我做的任何事都不能說服我在創建時從填充從左到右完全屏幕。我想在兩邊添加類似於普通Toast的保證金。之後,我可以爲形狀添加陰影。爲一個動態的Android TextView添加頁邊距
這裏我的表單佈局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rel_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/tv1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:gravity="center_vertical|center_horizontal"
android:text="@string/hello_world"
android:textColor="@color/holobrightblue"
android:textSize="48sp"
android:textStyle="bold"
tools:context=".MainActivity" />
</RelativeLayout>
..和我的代碼
textView = new TextView(m_Context);
RoundRectShape rs = new RoundRectShape(new float[] { 10, 10, 10, 10, 10, 10, 10, 10 }, null, null);
ShapeDrawable sd = new ShapeDrawable(rs);
sd.setAlpha(m_opacity);
textView.setBackgroundDrawable(sd);
textView.setTextColor(m_txtcolor);
textView.setText(toasttitle+"\n"+toastmessage);
textView.setBackgroundColor(Color.BLACK);
textView.setPadding(10,10,10,10);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT);
lp.setMargins(60, 0, 60, 0);
textView.setLayoutParams(lp);
toastView = new Toast(m_Context);
toastView.setView(textView);
toastView.setDuration(m_toastlen);
toastView.setGravity(m_screengravity, 0,0);
toastView.show();
如前所述,沒有什麼我已經從其他的解決方案試圖似乎填滿所有的臥式空間說服TextView的。
我試過去除那個形狀等...
任何想法?
填充不會解決這個問題,因爲它會被應用於文本TextView的內部,使文字和邊框之間的空間將得到increased.The人想要完整TextView以居中或移動爲屏幕邊框的給定值 – 2012-08-01 11:18:44
請參閱我編輯的答案 – 2012-08-01 11:19:10
感謝您接受我的評論+ vely.Still,問題將保留,因爲填充將應用於TextView中的文本。你知道我在說什麼?因爲填充是應用於TextView的,所以文本會被填充。 – 2012-08-01 11:22:35