我正在尝试使用Compound Drawables为TextView设置上线。 我在XML drawable资源中创建了一个线形,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke android:width="1dp" android:color="#000000" />
<solid android:color="#00000000" />
</shape>
现在我试图将它作为一个上划线放到我的TextView中:
TextView root=(TextView)findViewById(R.id.root);
Drawable background=getResources().getDrawable(R.drawable.overline);
root.setCompoundDrawables(null,background,null,null);
但它完全忽略了指令,并且没有出现上线。 我也考虑过使用CompoundDrawablesWithIntrinsicBounds,但这也不起作用。 形状的XML是错误的还是我以错误的方式使用该方法? 非常感谢你提前!
编辑:我尝试使用XML android:drawableTop属性,但仍然没有运气。 在这一点上,我认为形状本身显然存在问题。 完整的代码在这里:
activity_my.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MyActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/hello"
android:textSize="30sp"
android:drawableTop="@drawable/overline"
android:text="Ciao" />
</RelativeLayout>
overline.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke android:width="1dp" android:color="#000000" />
<solid android:color="#00000000" />
</shape>
我的java与Android Studio中提供的“Hello World”默认示例完全相同:
package tesi.bordengsberiment;
import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.AttributeSet;
import android.util.Log;
import android.util.TypedValue;
import android.view.Menu;
import android.view.MenuItem;
import android.view.ViewTreeObserver;
import android.widget.TextView;
public class MyActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.my, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:1)
之前我遇到过同样的问题。你想使用
root.setCompoundDrawablesWithIntrinsicBounds();