1

我想在屏幕中心有一个文本视图,其中有许多自定义 SeekBars 位于一个圆圈的边缘周围。它应该看起来像这样。

视图的外观

这是我到目前为止的代码。为了使用更少的代码而不是自定义的 SeekBars,我将使用默认的 SeekBars。我正在使用 Vertical Seek Bar 库https://github.com/AndroSelva/Vertical-SeekBar-Android

主要活动:

public class MainActivity extends Activity implements OnSeekBarChangeListener {

    TextView tv;
    TextView ss;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    RelativeLayout layout = (RelativeLayout) findViewById(R.id.main_layout);
    tv = (TextView)findViewById(R.id.seek_score);
    ss = (TextView)findViewById(R.id.selected_segment);


    RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
    RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    lp.addRule(RelativeLayout.RIGHT_OF, tv.getId());

    VerticalSeekBar verticalSeekBar = (VerticalSeekBar) getLayoutInflater().inflate(R.layout.motif_segment, null);
    verticalSeekBar.setName("Test Segment");
    verticalSeekBar.setOnSeekBarChangeListener(this);
    layout.addView(verticalSeekBar, lp);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return false;
}

@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean isUser) {
    tv.setText(Integer.toString(progress / 100));
}

@Override
public void onStartTrackingTouch(SeekBar seekBar) {

}

@Override
public void onStopTrackingTouch(SeekBar seekBar) {


} 
}

main_activity.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" 
    android:id="@+id/main_layout"
    android:layout_gravity="center"
> 

    <TextView 
       android:id="@+id/seek_score"
       android:layout_width="50dip"
       android:layout_height="50dip" 
       android:layout_centerHorizontal="true"
       android:background="@drawable/circle"
       android:gravity="center"
       android:text="0"
       android:layout_margin="40dip"
    />

    <TextView
        android:id="@+id/selected_segment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="" />

</RelativeLayout>
4

1 回答 1

1

我想在屏幕中心有一个文本视图,其中有许多自定义 SeekBars 位于一个圆圈的边缘

如果编号的视图具有任意尺寸(意味着它们比中心圆大)并且您只想像图像一样放置它们,那么这很简单:

  • 创建圆形视图,它将是一个正方形,边是 4 和 2 或 3 和 1 之间的距离,以父级为中心
  • 视图 1 将水平居中 + 设置在圆形视图上方
  • 视图 3 将水平居中 + 设置在圆形视图下方
  • 视图 4 将垂直居中 + 设置在圆形视图的左侧
  • 视图 2 将垂直居中 + 设置在圆形视图的右侧

如果您希望视图 1、2、3、4 具有圆的大小,则使用上面的位置,但也使用 alignLeft/Right/top/Bottom 属性和圆形视图。

如果这四个视图不是您想要围绕圆圈放置的单个视图,那么您应该创建一个自定义ViewGroup来更精确地计算应如何放置子视图。

于 2013-03-16T17:18:07.703 回答